summaryrefslogtreecommitdiff
path: root/test/files/instrumented/inline-in-constructors
Commit message (Collapse)AuthorAgeFilesLines
* SI-8050 [Avian] Skip instrumented testsSimon Ochsenreither2013-12-081-8/+13
| | | | | | | | | | Instrumentation is (currently) not supported on Avian. This causes - tests instrumented/InstrumentationTest.scala and - instrumented/inline-in-constructors to fail. Let's skip these tests on Avian.
* Enable inlining in constructors.Grzegorz Kossakowski2012-08-073-0/+35
Inlining in constructors has been disabled a long time ago due to some VerifyErrors. Unfortunately, @dragos cannot recall what exactly was the problem. I tried to enable inlining in constructors and I didn't see any problem. `Predef.assert` calls in class constructors are one of the biggest contributors to closure allocation in a compiler so we better off get rid of it. Added a test-case that checks if inlining in constructors works properly. Review by @magarciaEPFL and @paulp.