OLD | NEW |
(Empty) | |
| 1 library test; |
| 2 import self as self; |
| 3 import "dart:core" as core; |
| 4 |
| 5 class A extends core::Object { |
| 6 field core::int f = null; |
| 7 constructor •() → void |
| 8 : super core::Object::•() |
| 9 ; |
| 10 } |
| 11 static field dynamic v_assign = new self::A::•().f = 1; |
| 12 static field dynamic v_plus = let final dynamic #t1 = new self::A::•() in #t1.f
= #t1.f.+(1); |
| 13 static field dynamic v_minus = let final dynamic #t2 = new self::A::•() in #t2.f
= #t2.f.-(1); |
| 14 static field dynamic v_multiply = let final dynamic #t3 = new self::A::•() in #t
3.f = #t3.f.*(1); |
| 15 static field dynamic v_prefix_pp = let final dynamic #t4 = new self::A::•() in #
t4.f = #t4.f.+(1); |
| 16 static field dynamic v_prefix_mm = let final dynamic #t5 = new self::A::•() in #
t5.f = #t5.f.-(1); |
| 17 static field dynamic v_postfix_pp = let final dynamic #t6 = new self::A::•() in
let final dynamic #t7 = #t6.f in let final dynamic #t8 = #t6.f = #t7.+(1) in #t7
; |
| 18 static field dynamic v_postfix_mm = let final dynamic #t9 = new self::A::•() in
let final dynamic #t10 = #t9.f in let final dynamic #t11 = #t9.f = #t10.-(1) in
#t10; |
| 19 static method main() → dynamic {} |
OLD | NEW |