| 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 class Cheese { |   6 class Cheese { | 
|   7   static final mild = 1; |   7   static final mild = 1; | 
|   8   static final stinky = 2; |   8   static final stinky = 2; | 
|   9  |   9  | 
|  10   // Instance fields with initializer expression. |  10   // Instance fields with initializer expression. | 
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  51   Expect.equals("Munster", munster.name); |  51   Expect.equals("Munster", munster.name); | 
|  52   Expect.equals(Cheese.stinky, munster.smell); |  52   Expect.equals(Cheese.stinky, munster.smell); | 
|  53  |  53  | 
|  54   var brie = new Cheese.hideAndSeek("Brie"); |  54   var brie = new Cheese.hideAndSeek("Brie"); | 
|  55   Expect.equals("Brie", brie.name); |  55   Expect.equals("Brie", brie.name); | 
|  56   Expect.equals(Cheese.mild, brie.smell); |  56   Expect.equals(Cheese.mild, brie.smell); | 
|  57  |  57  | 
|  58   var t = new HasNoExplicitConstructor(); |  58   var t = new HasNoExplicitConstructor(); | 
|  59   Expect.equals("Tilsiter", t.s); |  59   Expect.equals("Tilsiter", t.s); | 
|  60 } |  60 } | 
| OLD | NEW |