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

Side by Side Diff: pkg/compiler/lib/src/common/resolution.dart

Issue 1334203002: Compute Compiler.proxyConstant on demand. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comment 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 | « no previous file | pkg/compiler/lib/src/compiler.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 dart2js.common.resolution; 5 library dart2js.common.resolution;
6 6
7 import '../compiler.dart' show 7 import '../compiler.dart' show
8 Compiler; 8 Compiler;
9 import '../dart_types.dart' show 9 import '../dart_types.dart' show
10 DartType; 10 DartType;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 107
108 /// Register that a super call will end up calling 108 /// Register that a super call will end up calling
109 /// [: super.noSuchMethod :]. 109 /// [: super.noSuchMethod :].
110 void onSuperNoSuchMethod(Registry registry) {} 110 void onSuperNoSuchMethod(Registry registry) {}
111 111
112 /// Register that the application creates a constant map. 112 /// Register that the application creates a constant map.
113 void onMapLiteral(Registry registry, DartType type, bool isConstant) {} 113 void onMapLiteral(Registry registry, DartType type, bool isConstant) {}
114 114
115 /// Called when resolving the `Symbol` constructor. 115 /// Called when resolving the `Symbol` constructor.
116 void onSymbolConstructor(Registry registry) {} 116 void onSymbolConstructor(Registry registry) {}
117
118 /// Called when resolving a prefix or postfix expression.
119 void onIncDecOperation(Registry registry) {}
117 } 120 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698