summaryrefslogtreecommitdiff
path: root/test/files/run/t7852.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-7852 for GenBCodeLukas Rytz2014-05-071-1/+1
| | | | | | | | Avoid null checks for "someLiteral".== and SomeModule.==. This has been implemented in GenICode in #2954. Introduces a trait to share code between GenICode and GenBCode. This is just a start, more such refactorings will come quite certainly.
* SI-7852 Refactor null-elision tests to be more focussedJason Zaugg2013-09-181-11/+21
| | | | | | | | - Directly count null checks, rather than diffing the textual bytecode of the entire method - Add a test to show that the LHS needs to be a direct module reference, not just a tree with a module type, to elide the null check.
* SI-7852 Test to show status quo of for SomeModule.==Jason Zaugg2013-09-171-6/+15
| | | | | For which we can also elide the null check, and will in the next commit.
* SI-7852 Test to show the status quo bytecode for "" == ...Jason Zaugg2013-09-171-0/+20
Will be somewhat leaner after the next commit.