| 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 = new B(); | 12 A() : x = new B(); |
| 11 foo() { | 13 foo() { |
| 12 x++; | 14 x++; |
| 13 } | 15 } |
| 14 } | 16 } |
| 15 | 17 |
| 16 class B { | 18 class B { |
| 17 operator +(other) => 498; | 19 operator +(other) => 498; |
| 18 } | 20 } |
| 19 main() { | 21 main() { |
| 20 var a = new A(); | 22 var a = new A(); |
| 21 a.foo(); | 23 a.foo(); |
| 22 a.foo(); | 24 a.foo(); |
| 23 Expect.equals(499, a.x); | 25 Expect.equals(499, a.x); |
| 24 } | 26 } |
| OLD | NEW |