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

Unified Diff: pkg/compiler/lib/src/compiler.dart

Issue 1314573002: Use Name instead of Selector in SemanticSendVisitor (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/compiler.dart
diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
index ef2a0b3e1b7902b5d2186d1be40ca91c482d0b9b..db4a5c4d2141ea17e539f2b9ade25c85c01c911d 100644
--- a/pkg/compiler/lib/src/compiler.dart
+++ b/pkg/compiler/lib/src/compiler.dart
@@ -123,6 +123,7 @@ import 'typechecker.dart' show
TypeCheckerTask;
import 'types/types.dart' as ti;
import 'universe/universe.dart' show
+ CallStructure,
Selector,
Universe;
import 'util/characters.dart' show $_;
@@ -440,7 +441,7 @@ abstract class Compiler implements DiagnosticListener {
QueueFilter enqueuerFilter = new QueueFilter();
final Selector symbolValidatedConstructorSelector = new Selector.call(
- const PublicName('validated'), 1);
+ const PublicName('validated'), CallStructure.ONE_ARG);
static const String CREATE_INVOCATION_MIRROR =
'createInvocationMirror';

Powered by Google App Engine
This is Rietveld 408576698