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

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

Issue 1309743006: Move common URIs to common/names.dart (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
« no previous file with comments | « pkg/compiler/lib/src/js_backend/backend.dart ('k') | pkg/compiler/lib/src/library_loader.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
11 import 'package:js_runtime/shared/embedded_names.dart' show JsGetName; 11 import 'package:js_runtime/shared/embedded_names.dart' show JsGetName;
12 12
13 import '../closure.dart'; 13 import '../closure.dart';
14 import '../common/backend_api.dart' show 14 import '../common/backend_api.dart' show
15 Backend; 15 Backend;
16 import '../common/codegen.dart' show 16 import '../common/codegen.dart' show
17 CodegenRegistry, 17 CodegenRegistry,
18 CodegenWorkItem; 18 CodegenWorkItem;
19 import '../common/names.dart' show 19 import '../common/names.dart' show
20 Identifiers, 20 Identifiers,
21 Selectors; 21 Selectors,
22 Uris;
22 import '../common/registry.dart' show 23 import '../common/registry.dart' show
23 Registry; 24 Registry;
24 import '../common/tasks.dart' show 25 import '../common/tasks.dart' show
25 CompilerTask; 26 CompilerTask;
26 import '../common/resolution.dart' show 27 import '../common/resolution.dart' show
27 ResolutionCallbacks; 28 ResolutionCallbacks;
28 import '../common/work.dart' show 29 import '../common/work.dart' show
29 ItemCompilationContext; 30 ItemCompilationContext;
30 import '../compiler.dart' show 31 import '../compiler.dart' show
31 Compiler, 32 Compiler,
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 part 'constant_handler_javascript.dart'; 96 part 'constant_handler_javascript.dart';
96 part 'custom_elements_analysis.dart'; 97 part 'custom_elements_analysis.dart';
97 part 'frequency_namer.dart'; 98 part 'frequency_namer.dart';
98 part 'field_naming_mixin.dart'; 99 part 'field_naming_mixin.dart';
99 part 'minify_namer.dart'; 100 part 'minify_namer.dart';
100 part 'namer.dart'; 101 part 'namer.dart';
101 part 'namer_names.dart'; 102 part 'namer_names.dart';
102 part 'no_such_method_registry.dart'; 103 part 'no_such_method_registry.dart';
103 part 'runtime_types.dart'; 104 part 'runtime_types.dart';
104 part 'type_variable_handler.dart'; 105 part 'type_variable_handler.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_backend/backend.dart ('k') | pkg/compiler/lib/src/library_loader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698