| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
| 5 // Dart test program to test type-based optimization on fields. | 7 // Dart test program to test type-based optimization on fields. |
| 6 | 8 |
| 7 | 9 |
| 8 class A { | 10 class A { |
| 9 var x; | 11 var x; |
| 10 A() : x = 0; | 12 A() : x = 0; |
| 11 foo() { | 13 foo() { |
| 12 x++; | 14 x++; |
| 13 } | 15 } |
| 14 toto() { | 16 toto() { |
| 15 x = 99; | 17 x = 99; |
| 16 } | 18 } |
| 17 bar(y) { | 19 bar(y) { |
| 18 x = y; | 20 x = y; |
| 19 } | 21 } |
| 20 } | 22 } |
| 21 | 23 |
| 22 class B { | 24 class B { |
| 23 operator +(other) => "ok"; | 25 operator +(other) => "ok"; |
| 24 } | 26 } |
| 25 main() { | 27 main() { |
| 26 var a = new A(); | 28 var a = new A(); |
| 27 a.foo(); | 29 a.foo(); |
| 28 a.toto(); | 30 a.toto(); |
| 29 a.bar("str"); | 31 a.bar("str"); |
| 30 a.bar(new B()); | 32 a.bar(new B()); |
| 31 a.foo(); | 33 a.foo(); |
| 32 Expect.equals("ok", a.x); | 34 Expect.equals("ok", a.x); |
| 33 } | 35 } |
| OLD | NEW |