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

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

Issue 1435853002: Register closures using StaticUse. (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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 import '../types/types.dart'; 81 import '../types/types.dart';
82 import '../universe/call_structure.dart' show 82 import '../universe/call_structure.dart' show
83 CallStructure; 83 CallStructure;
84 import '../universe/selector.dart' show 84 import '../universe/selector.dart' show
85 Selector, 85 Selector,
86 SelectorKind; 86 SelectorKind;
87 import '../universe/universe.dart'; 87 import '../universe/universe.dart';
88 import '../universe/use.dart' show 88 import '../universe/use.dart' show
89 DynamicUse, 89 DynamicUse,
90 StaticUse, 90 StaticUse,
91 StaticUseKind,
91 TypeUse, 92 TypeUse,
92 TypeUseKind; 93 TypeUseKind;
93 import '../universe/world_impact.dart' show 94 import '../universe/world_impact.dart' show
94 TransformedWorldImpact, 95 TransformedWorldImpact,
95 WorldImpact; 96 WorldImpact;
96 import '../util/characters.dart'; 97 import '../util/characters.dart';
97 import '../util/util.dart'; 98 import '../util/util.dart';
98 import '../world.dart' show 99 import '../world.dart' show
99 ClassWorld; 100 ClassWorld;
100 101
(...skipping 11 matching lines...) Expand all
112 part 'constant_handler_javascript.dart'; 113 part 'constant_handler_javascript.dart';
113 part 'custom_elements_analysis.dart'; 114 part 'custom_elements_analysis.dart';
114 part 'frequency_namer.dart'; 115 part 'frequency_namer.dart';
115 part 'field_naming_mixin.dart'; 116 part 'field_naming_mixin.dart';
116 part 'minify_namer.dart'; 117 part 'minify_namer.dart';
117 part 'namer.dart'; 118 part 'namer.dart';
118 part 'namer_names.dart'; 119 part 'namer_names.dart';
119 part 'no_such_method_registry.dart'; 120 part 'no_such_method_registry.dart';
120 part 'runtime_types.dart'; 121 part 'runtime_types.dart';
121 part 'type_variable_handler.dart'; 122 part 'type_variable_handler.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/js_backend/backend.dart ('k') | pkg/compiler/lib/src/resolution/members.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698