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

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

Issue 1762723002: Cleanup 1: split parts into their own libraries, remove unused imports (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 code_generator_dependencies; 5 library code_generator_dependencies;
6 6
7 import '../backend_helpers.dart' show 7 import '../backend_helpers.dart' show
8 BackendHelpers; 8 BackendHelpers;
9 import '../js_backend.dart'; 9 import '../js_backend.dart';
10 10
11 import '../../common.dart'; 11 import '../../common.dart';
12 import '../../common/registry.dart' show
13 Registry;
14 import '../../common/codegen.dart' show 12 import '../../common/codegen.dart' show
15 CodegenRegistry; 13 CodegenRegistry;
16 import '../../compiler.dart' show 14 import '../../compiler.dart' show
17 Compiler; 15 Compiler;
18 import '../../constants/values.dart'; 16 import '../../constants/values.dart';
19 import '../../dart_types.dart' show 17 import '../../dart_types.dart' show
20 DartType, 18 DartType,
21 TypeVariableType, 19 TypeVariableType,
22 InterfaceType; 20 InterfaceType;
23 import '../../enqueue.dart' show 21 import '../../enqueue.dart' show
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 FunctionElement get closureFromTearOff => _backend.helpers.closureFromTearOff; 291 FunctionElement get closureFromTearOff => _backend.helpers.closureFromTearOff;
294 292
295 js.Name registerOneShotInterceptor(Selector selector) { 293 js.Name registerOneShotInterceptor(Selector selector) {
296 return _backend.registerOneShotInterceptor(selector); 294 return _backend.registerOneShotInterceptor(selector);
297 } 295 }
298 296
299 bool mayGenerateInstanceofCheck(DartType type) { 297 bool mayGenerateInstanceofCheck(DartType type) {
300 return _backend.mayGenerateInstanceofCheck(type); 298 return _backend.mayGenerateInstanceofCheck(type);
301 } 299 }
302 } 300 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698