OLD | NEW |
1 dart_library.library('fieldtest', null, /* Imports */[ | 1 dart_library.library('fieldtest', null, /* Imports */[ |
2 "dart_runtime/dart", | 2 "dart_runtime/dart", |
3 'dart/core' | 3 'dart/core' |
4 ], /* Lazy imports */[ | 4 ], /* Lazy imports */[ |
5 ], function(exports, dart, core) { | 5 ], function(exports, dart, core) { |
6 'use strict'; | 6 'use strict'; |
7 let dartx = dart.dartx; | 7 let dartx = dart.dartx; |
8 class A extends core.Object { | 8 class A extends core.Object { |
9 A() { | 9 A() { |
10 this.x = 42; | 10 this.x = 42; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 exports.foo = foo; | 126 exports.foo = foo; |
127 exports.bar = bar; | 127 exports.bar = bar; |
128 exports.baz = baz; | 128 exports.baz = baz; |
129 exports.compute = compute; | 129 exports.compute = compute; |
130 exports.BaseWithGetter = BaseWithGetter; | 130 exports.BaseWithGetter = BaseWithGetter; |
131 exports.Derived = Derived; | 131 exports.Derived = Derived; |
132 exports.Generic$ = Generic$; | 132 exports.Generic$ = Generic$; |
133 exports.Generic = Generic; | 133 exports.Generic = Generic; |
134 exports.StaticFieldOrder1 = StaticFieldOrder1; | 134 exports.StaticFieldOrder1 = StaticFieldOrder1; |
135 exports.StaticFieldOrder2 = StaticFieldOrder2; | 135 exports.StaticFieldOrder2 = StaticFieldOrder2; |
| 136 exports.MyEnum = MyEnum; |
136 exports.main = main; | 137 exports.main = main; |
137 }); | 138 }); |
OLD | NEW |