| 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("dart:isolate"); | 5 #import("dart:isolate"); |
| 6 | 6 |
| 7 class Fields { | 7 class Fields { |
| 8 Fields(int i, int j) : fld1 = i, fld2 = j, fld5 = true {} | 8 Fields(int i, int j) : fld1 = i, fld2 = j, fld5 = true {} |
| 9 int fld1; | 9 int fld1; |
| 10 final int fld2; | 10 final int fld2; |
| 11 static int fld3; | 11 static int fld3; |
| 12 static const int fld4 = 10; | 12 static const int fld4 = 10; |
| 13 bool fld5; | 13 bool fld5; |
| 14 } | 14 } |
| 15 class FieldsTest { | 15 class FieldsTest { |
| 16 static Fields testMain() { | 16 static Fields testMain() { |
| 17 Fields obj = new Fields(10, 20); | 17 Fields obj = new Fields(10, 20); |
| (...skipping 1530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1548 void processLines() { | 1548 void processLines() { |
| 1549 port.receive((message, SendPort replyTo) { | 1549 port.receive((message, SendPort replyTo) { |
| 1550 if (message == TERMINATION_MESSAGE) { | 1550 if (message == TERMINATION_MESSAGE) { |
| 1551 assert(replyTo == null); | 1551 assert(replyTo == null); |
| 1552 port.close(); | 1552 port.close(); |
| 1553 } else { | 1553 } else { |
| 1554 replyTo.send(processLine(message), null); | 1554 replyTo.send(processLine(message), null); |
| 1555 } | 1555 } |
| 1556 }); | 1556 }); |
| 1557 } | 1557 } |
| OLD | NEW |