Pseudocode: Generate instructions for superclass constructor calls. Consume value of delegate expression in the by-clause

This commit is contained in:
Alexey Sedunov
2014-06-26 20:16:08 +04:00
parent 523beab902
commit 1c75a5f642
17 changed files with 248 additions and 48 deletions
@@ -0,0 +1,5 @@
trait T
class A(a: Int, b: Int): T
class B(a: Int, b: Int): T by A(a + b, a - b)