OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library dart2js.js_emitter.lazy_emitter.model_emitter; | 5 library dart2js.js_emitter.lazy_emitter.model_emitter; |
6 | 6 |
7 import '../../constants/values.dart' show ConstantValue, FunctionConstantValue; | 7 import '../../compiler.dart' show |
8 import '../../dart2jslib.dart' show Compiler; | 8 Compiler; |
9 import '../../elements/elements.dart' show ClassElement, FunctionElement; | 9 import '../../constants/values.dart' show |
| 10 ConstantValue, |
| 11 FunctionConstantValue; |
| 12 import '../../elements/elements.dart' show |
| 13 ClassElement, |
| 14 FunctionElement; |
10 import '../../js/js.dart' as js; | 15 import '../../js/js.dart' as js; |
11 import '../../js_backend/js_backend.dart' show | 16 import '../../js_backend/js_backend.dart' show |
12 JavaScriptBackend, | 17 JavaScriptBackend, |
13 Namer, | 18 Namer, |
14 ConstantEmitter; | 19 ConstantEmitter; |
15 | 20 |
16 import '../js_emitter.dart' show AstContainer, NativeEmitter; | 21 import '../js_emitter.dart' show AstContainer, NativeEmitter; |
17 | 22 |
18 import 'package:js_runtime/shared/embedded_names.dart' show | 23 import 'package:js_runtime/shared/embedded_names.dart' show |
19 CREATE_NEW_ISOLATE, | 24 CREATE_NEW_ISOLATE, |
(...skipping 1219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1239 | 1244 |
1240 var end = Date.now(); | 1245 var end = Date.now(); |
1241 // print('Setup: ' + (end - start) + ' ms.'); | 1246 // print('Setup: ' + (end - start) + ' ms.'); |
1242 | 1247 |
1243 #invokeMain; // Start main. | 1248 #invokeMain; // Start main. |
1244 | 1249 |
1245 })(Date.now(), #code) | 1250 })(Date.now(), #code) |
1246 }"""; | 1251 }"""; |
1247 | 1252 |
1248 } | 1253 } |
OLD | NEW |