| 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 22 matching lines...) Expand all Loading... |
| 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 TypeVariableHandler; | 40 TypeVariableHandler; |
| 41 | 41 |
| 42 import '../source_file.dart' show | 42 import '../source_file.dart' show |
| 43 SourceFile; | 43 SourceFile, |
| 44 StringSourceFile; |
| 44 | 45 |
| 45 import '../source_map_builder.dart' show | 46 import '../source_map_builder.dart' show |
| 46 SourceMapBuilder; | 47 SourceMapBuilder; |
| 47 | 48 |
| 48 import '../util/characters.dart' show | 49 import '../util/characters.dart' show |
| 49 $$, | 50 $$, |
| 50 $A, | 51 $A, |
| 51 $HASH, | 52 $HASH, |
| 52 $PERIOD, | 53 $PERIOD, |
| 53 $Z, | 54 $Z, |
| 54 $a, | 55 $a, |
| 55 $z; | 56 $z; |
| 56 | 57 |
| 57 import '../util/uri_extras.dart' show | 58 import '../util/uri_extras.dart' show |
| 58 relativize; | 59 relativize; |
| 59 | 60 |
| 60 part 'class_builder.dart'; | 61 part 'class_builder.dart'; |
| 61 part 'class_emitter.dart'; | 62 part 'class_emitter.dart'; |
| 62 part 'closure_invocation_element.dart'; | 63 part 'closure_invocation_element.dart'; |
| 63 part 'code_emitter_helper.dart'; | 64 part 'code_emitter_helper.dart'; |
| 64 part 'code_emitter_task.dart'; | 65 part 'code_emitter_task.dart'; |
| 65 part 'container_builder.dart'; | 66 part 'container_builder.dart'; |
| 66 part 'declarations.dart'; | 67 part 'declarations.dart'; |
| 67 part 'helpers.dart'; | 68 part 'helpers.dart'; |
| 68 part 'interceptor_emitter.dart'; | 69 part 'interceptor_emitter.dart'; |
| 69 part 'metadata_emitter.dart'; | 70 part 'metadata_emitter.dart'; |
| 70 part 'nsm_emitter.dart'; | 71 part 'nsm_emitter.dart'; |
| 71 part 'reflection_data_parser.dart'; | 72 part 'reflection_data_parser.dart'; |
| 72 part 'type_test_emitter.dart'; | 73 part 'type_test_emitter.dart'; |
| OLD | NEW |