| 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 Queue; | 7 import 'dart:collection' show Queue; |
| 8 | 8 |
| 9 import '../common.dart'; | 9 import '../common.dart'; |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 JavaScriptBackend, | 32 JavaScriptBackend, |
| 33 JavaScriptBackend, | 33 JavaScriptBackend, |
| 34 Namer, | 34 Namer, |
| 35 NativeEmitter, | 35 NativeEmitter, |
| 36 RuntimeTypes, | 36 RuntimeTypes, |
| 37 Substitution, | 37 Substitution, |
| 38 TypeCheck, | 38 TypeCheck, |
| 39 TypeChecks; | 39 TypeChecks; |
| 40 | 40 |
| 41 import '../source_file.dart' show | 41 import '../source_file.dart' show |
| 42 SourceFile; | 42 SourceFile, |
| 43 StringSourceFile; |
| 43 | 44 |
| 44 import '../source_map_builder.dart' show | 45 import '../source_map_builder.dart' show |
| 45 SourceMapBuilder; | 46 SourceMapBuilder; |
| 46 | 47 |
| 47 import '../util/characters.dart' show | 48 import '../util/characters.dart' show |
| 48 $$, | 49 $$, |
| 49 $A, | 50 $A, |
| 50 $HASH, | 51 $HASH, |
| 51 $PERIOD, | 52 $PERIOD, |
| 52 $Z, | 53 $Z, |
| 53 $a, | 54 $a, |
| 54 $z; | 55 $z; |
| 55 | 56 |
| 56 import '../util/uri_extras.dart' show | 57 import '../util/uri_extras.dart' show |
| 57 relativize; | 58 relativize; |
| 58 | 59 |
| 59 part 'class_builder.dart'; | 60 part 'class_builder.dart'; |
| 60 part 'class_emitter.dart'; | 61 part 'class_emitter.dart'; |
| 61 part 'closure_invocation_element.dart'; | 62 part 'closure_invocation_element.dart'; |
| 62 part 'code_emitter_helper.dart'; | 63 part 'code_emitter_helper.dart'; |
| 63 part 'code_emitter_task.dart'; | 64 part 'code_emitter_task.dart'; |
| 64 part 'container_builder.dart'; | 65 part 'container_builder.dart'; |
| 65 part 'declarations.dart'; | 66 part 'declarations.dart'; |
| 66 part 'helpers.dart'; | 67 part 'helpers.dart'; |
| 67 part 'interceptor_emitter.dart'; | 68 part 'interceptor_emitter.dart'; |
| 68 part 'metadata_emitter.dart'; | 69 part 'metadata_emitter.dart'; |
| 69 part 'nsm_emitter.dart'; | 70 part 'nsm_emitter.dart'; |
| 70 part 'reflection_data_parser.dart'; | 71 part 'reflection_data_parser.dart'; |
| 71 part 'type_test_emitter.dart'; | 72 part 'type_test_emitter.dart'; |
| OLD | NEW |