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

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

Issue 1421003004: Add CoreClasses (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comment. Created 5 years, 1 month 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 24 matching lines...) Expand all
35 ResolutionImpact, 35 ResolutionImpact,
36 TransformedWorldImpact; 36 TransformedWorldImpact;
37 import '../common/work.dart' show 37 import '../common/work.dart' show
38 ItemCompilationContext; 38 ItemCompilationContext;
39 import '../compiler.dart' show 39 import '../compiler.dart' show
40 Compiler; 40 Compiler;
41 import '../compile_time_constants.dart'; 41 import '../compile_time_constants.dart';
42 import '../constants/constant_system.dart'; 42 import '../constants/constant_system.dart';
43 import '../constants/expressions.dart'; 43 import '../constants/expressions.dart';
44 import '../constants/values.dart'; 44 import '../constants/values.dart';
45 import '../core_types.dart' show
46 CoreClasses,
47 CoreTypes;
45 import '../dart_types.dart'; 48 import '../dart_types.dart';
46 import '../elements/elements.dart'; 49 import '../elements/elements.dart';
47 import '../elements/visitor.dart' show 50 import '../elements/visitor.dart' show
48 BaseElementVisitor; 51 BaseElementVisitor;
49 import '../enqueue.dart' show 52 import '../enqueue.dart' show
50 Enqueuer, 53 Enqueuer,
51 ResolutionEnqueuer; 54 ResolutionEnqueuer;
52 import '../io/code_output.dart'; 55 import '../io/code_output.dart';
53 import '../io/source_information.dart' show 56 import '../io/source_information.dart' show
54 SourceInformationStrategy, 57 SourceInformationStrategy,
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 part 'constant_handler_javascript.dart'; 109 part 'constant_handler_javascript.dart';
107 part 'custom_elements_analysis.dart'; 110 part 'custom_elements_analysis.dart';
108 part 'frequency_namer.dart'; 111 part 'frequency_namer.dart';
109 part 'field_naming_mixin.dart'; 112 part 'field_naming_mixin.dart';
110 part 'minify_namer.dart'; 113 part 'minify_namer.dart';
111 part 'namer.dart'; 114 part 'namer.dart';
112 part 'namer_names.dart'; 115 part 'namer_names.dart';
113 part 'no_such_method_registry.dart'; 116 part 'no_such_method_registry.dart';
114 part 'runtime_types.dart'; 117 part 'runtime_types.dart';
115 part 'type_variable_handler.dart'; 118 part 'type_variable_handler.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698