| OLD | NEW |
| 1 >>> | 1 >>> |
| 2 class | 2 class |
| 3 A | 3 A |
| 4 { | 4 { |
| 5 } | 5 } |
| 6 <<< | 6 <<< |
| 7 class A { | 7 class A { |
| 8 } | 8 } |
| 9 >>> dartbug.com/15876 | 9 >>> dartbug.com/15876 |
| 10 // fisk | 10 // fisk |
| 11 import "dart:typed_data"; | 11 import "dart:typed_data"; |
| 12 | 12 |
| 13 main() { | 13 main() { |
| 14 ByteData byteData = new ByteData(1); | 14 ByteData byteData = new ByteData(1); |
| 15 print(byteData is ByteData); | 15 print(byteData is ByteData); |
| 16 print(byteData.elementSizeInBytes); | 16 print(byteData.elementSizeInBytes); |
| 17 } | 17 } |
| 18 <<< | 18 <<< |
| 19 // fisk | 19 // fisk |
| 20 import "dart:typed_data"; | 20 import "dart:typed_data"; |
| 21 | 21 |
| 22 main() { | 22 main() { |
| 23 ByteData byteData = new ByteData(1); | 23 ByteData byteData = new ByteData(1); |
| 24 print(byteData is ByteData); | 24 print(byteData is ByteData); |
| 25 print(byteData.elementSizeInBytes); | 25 print(byteData.elementSizeInBytes); |
| 26 } | 26 } |
| 27 >>> |
| 28 /** |
| 29 * Y. |
| 30 */ |
| 31 abstract class Y = String; |
| 32 <<< |
| 33 /** |
| 34 * Y. |
| 35 */ |
| 36 abstract class Y = String; |
| OLD | NEW |