| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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; | 5 library dart2js.js_emitter; |
| 6 | 6 |
| 7 import 'dart:collection' show LinkedHashMap, Queue; | 7 import 'dart:collection' show LinkedHashMap, Queue; |
| 8 | 8 |
| 9 import '../common.dart'; | 9 import '../common.dart'; |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 CheckedModeHelper, | 28 CheckedModeHelper, |
| 29 CheckedModeHelper, | 29 CheckedModeHelper, |
| 30 ConstantEmitter, | 30 ConstantEmitter, |
| 31 JavaScriptBackend, | 31 JavaScriptBackend, |
| 32 JavaScriptBackend, | 32 JavaScriptBackend, |
| 33 Namer, | 33 Namer, |
| 34 NativeEmitter, | 34 NativeEmitter, |
| 35 RuntimeTypes, | 35 RuntimeTypes, |
| 36 Substitution, | 36 Substitution, |
| 37 TypeCheck, | 37 TypeCheck, |
| 38 TypeChecks; | 38 TypeChecks, |
| 39 TypeVariableConstantHandler; |
| 39 | 40 |
| 40 import '../source_file.dart' show | 41 import '../source_file.dart' show |
| 41 SourceFile; | 42 SourceFile; |
| 42 | 43 |
| 43 import '../source_map_builder.dart' show | 44 import '../source_map_builder.dart' show |
| 44 SourceMapBuilder; | 45 SourceMapBuilder; |
| 45 | 46 |
| 46 import '../util/characters.dart' show | 47 import '../util/characters.dart' show |
| 47 $$, | 48 $$, |
| 48 $A, | 49 $A, |
| 49 $HASH, | 50 $HASH, |
| 50 $PERIOD, | 51 $PERIOD, |
| 51 $Z, | 52 $Z, |
| 52 $a, | 53 $a, |
| 53 $z; | 54 $z; |
| 54 | 55 |
| 55 import '../util/uri_extras.dart' show | 56 import '../util/uri_extras.dart' show |
| 56 relativize; | 57 relativize; |
| 57 | 58 |
| 58 part 'class_builder.dart'; | 59 part 'class_builder.dart'; |
| 59 part 'closure_invocation_element.dart'; | 60 part 'closure_invocation_element.dart'; |
| 60 part 'code_emitter_task.dart'; | 61 part 'code_emitter_task.dart'; |
| 61 part 'container_builder.dart'; | 62 part 'container_builder.dart'; |
| 62 part 'declarations.dart'; | 63 part 'declarations.dart'; |
| 63 part 'reflection_data_parser.dart'; | 64 part 'reflection_data_parser.dart'; |
| OLD | NEW |