Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1255)

Side by Side Diff: pkg/compiler/lib/src/js_backend/js_backend.dart

Issue 1348063002: Make the universe parts into small libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 js_backend; 5 library js_backend;
6 6
7 import 'dart:async' show EventSink, Future; 7 import 'dart:async' show EventSink, Future;
8 import 'dart:collection' show HashMap; 8 import 'dart:collection' show HashMap;
9 9
10 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; 10 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 USE_LAZY_EMITTER; 72 USE_LAZY_EMITTER;
73 import '../library_loader.dart' show LibraryLoader, LoadedLibraries; 73 import '../library_loader.dart' show LibraryLoader, LoadedLibraries;
74 import '../native/native.dart' as native; 74 import '../native/native.dart' as native;
75 import '../resolution/registry.dart' show 75 import '../resolution/registry.dart' show
76 ResolutionRegistry; 76 ResolutionRegistry;
77 import '../resolution/tree_elements.dart' show 77 import '../resolution/tree_elements.dart' show
78 TreeElements; 78 TreeElements;
79 import '../ssa/ssa.dart'; 79 import '../ssa/ssa.dart';
80 import '../tree/tree.dart'; 80 import '../tree/tree.dart';
81 import '../types/types.dart'; 81 import '../types/types.dart';
82 import '../universe/call_structure.dart' show
83 CallStructure;
84 import '../universe/selector.dart' show
85 Selector,
86 SelectorKind;
82 import '../universe/universe.dart'; 87 import '../universe/universe.dart';
83 import '../util/characters.dart'; 88 import '../util/characters.dart';
84 import '../util/util.dart'; 89 import '../util/util.dart';
85 import '../world.dart' show 90 import '../world.dart' show
86 ClassWorld; 91 ClassWorld;
87 92
88 import 'codegen/task.dart'; 93 import 'codegen/task.dart';
89 import 'constant_system_javascript.dart'; 94 import 'constant_system_javascript.dart';
90 import 'patch_resolver.dart'; 95 import 'patch_resolver.dart';
91 import 'lookup_map_analysis.dart' show LookupMapAnalysis; 96 import 'lookup_map_analysis.dart' show LookupMapAnalysis;
92 97
93 part 'backend.dart'; 98 part 'backend.dart';
94 part 'checked_mode_helpers.dart'; 99 part 'checked_mode_helpers.dart';
95 part 'constant_emitter.dart'; 100 part 'constant_emitter.dart';
96 part 'constant_handler_javascript.dart'; 101 part 'constant_handler_javascript.dart';
97 part 'custom_elements_analysis.dart'; 102 part 'custom_elements_analysis.dart';
98 part 'frequency_namer.dart'; 103 part 'frequency_namer.dart';
99 part 'field_naming_mixin.dart'; 104 part 'field_naming_mixin.dart';
100 part 'minify_namer.dart'; 105 part 'minify_namer.dart';
101 part 'namer.dart'; 106 part 'namer.dart';
102 part 'namer_names.dart'; 107 part 'namer_names.dart';
103 part 'no_such_method_registry.dart'; 108 part 'no_such_method_registry.dart';
104 part 'runtime_types.dart'; 109 part 'runtime_types.dart';
105 part 'type_variable_handler.dart'; 110 part 'type_variable_handler.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_backend/codegen/unsugar.dart ('k') | pkg/compiler/lib/src/js_backend/lookup_map_analysis.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698