| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Test for instance field initializer expressions. | 4 // Test for instance field initializer expressions. |
| 5 | 5 |
| 6 import "package:expect/expect.dart"; | |
| 7 | |
| 8 class Cheese { | 6 class Cheese { |
| 9 static const mild = 1; | 7 static const mild = 1; |
| 10 static const stinky = 2; | 8 static const stinky = 2; |
| 11 | 9 |
| 12 // Instance fields with initializer expression. | 10 // Instance fields with initializer expression. |
| 13 String name = ""; | 11 String name = ""; |
| 14 var smell = mild; | 12 var smell = mild; |
| 15 | 13 |
| 16 Cheese() { | 14 Cheese() { |
| 17 Expect.equals("", this.name); | 15 Expect.equals("", this.name); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 Expect.equals("Munster", munster.name); | 51 Expect.equals("Munster", munster.name); |
| 54 Expect.equals(Cheese.stinky, munster.smell); | 52 Expect.equals(Cheese.stinky, munster.smell); |
| 55 | 53 |
| 56 var brie = new Cheese.hideAndSeek("Brie"); | 54 var brie = new Cheese.hideAndSeek("Brie"); |
| 57 Expect.equals("Brie", brie.name); | 55 Expect.equals("Brie", brie.name); |
| 58 Expect.equals(Cheese.mild, brie.smell); | 56 Expect.equals(Cheese.mild, brie.smell); |
| 59 | 57 |
| 60 var t = new HasNoExplicitConstructor(); | 58 var t = new HasNoExplicitConstructor(); |
| 61 Expect.equals("Tilsiter", t.s); | 59 Expect.equals("Tilsiter", t.s); |
| 62 } | 60 } |
| OLD | NEW |