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

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

Issue 1068233002: Revert "Extract CallStructure from Selector." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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
« no previous file with comments | « pkg/compiler/lib/src/common.dart ('k') | pkg/compiler/lib/src/constants/expressions.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/compile_time_constants.dart
diff --git a/pkg/compiler/lib/src/compile_time_constants.dart b/pkg/compiler/lib/src/compile_time_constants.dart
index c6f1af4c22a8b26bda7f76317197fa4725dec208..a5b01f39fd65e3e9826a5df915161c46dd5d62cb 100644
--- a/pkg/compiler/lib/src/compile_time_constants.dart
+++ b/pkg/compiler/lib/src/compile_time_constants.dart
@@ -444,7 +444,7 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
new DartString.literal(text))))];
AstConstant constant = makeConstructedConstant(
compiler, handler, context, node, type, compiler.symbolConstructor,
- CallStructure.ONE_ARG,
+ new Selector.callConstructor('', null, 1),
arguments, arguments);
return new AstConstant(
context, node, new SymbolConstantExpression(constant.value, text));
@@ -652,7 +652,7 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
*/
List<AstConstant> evaluateArgumentsToConstructor(
Node node,
- CallStructure callStructure,
+ Selector selector,
Link<Node> arguments,
FunctionElement target,
{AstConstant compileArgument(Node node)}) {
@@ -664,7 +664,7 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
}
target.computeSignature(compiler);
- if (!callStructure.signatureApplies(target)) {
+ if (!selector.applies(target, compiler.world)) {
String name = Elements.constructorNameForDiagnostics(
target.enclosingClass.name, target.name);
compiler.reportError(
@@ -676,11 +676,10 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
target.functionSignature.parameterCount,
new ErroneousAstConstant(context, node));
}
- return callStructure.makeArgumentsList(
- arguments,
- target,
- compileArgument,
- compileDefaultValue);
+ return selector.makeArgumentsList(arguments,
+ target,
+ compileArgument,
+ compileDefaultValue);
}
AstConstant visitNewExpression(NewExpression node) {
@@ -707,7 +706,7 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
compiler.analyzeElement(constructor.declaration);
InterfaceType type = elements.getType(node);
- CallStructure callStructure = elements.getSelector(send).callStructure;
+ Selector selector = elements.getSelector(send);
Map<Node, AstConstant> concreteArgumentMap =
<Node, AstConstant>{};
@@ -722,7 +721,7 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
List<AstConstant> normalizedArguments =
evaluateArgumentsToConstructor(
- node, callStructure, send.arguments, constructor.implementation,
+ node, selector, send.arguments, constructor.implementation,
compileArgument: (node) => concreteArgumentMap[node]);
List<AstConstant> concreteArguments =
concreteArgumentMap.values.toList();
@@ -737,7 +736,7 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
value,
type,
constructor,
- elements.getSelector(send).callStructure,
+ elements.getSelector(send),
concreteArguments.map((e) => e.expression).toList()));
}
@@ -812,7 +811,7 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
} else {
return makeConstructedConstant(
compiler, handler, context,
- node, type, constructor, callStructure,
+ node, type, constructor, selector,
concreteArguments, normalizedArguments);
}
}
@@ -824,12 +823,12 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
Node node,
InterfaceType type,
ConstructorElement constructor,
- CallStructure callStructure,
+ Selector selector,
List<AstConstant> concreteArguments,
List<AstConstant> normalizedArguments) {
- assert(invariant(node, callStructure.signatureApplies(constructor) ||
+ assert(invariant(node, selector.applies(constructor, compiler.world) ||
compiler.compilationFailed,
- message: "Call structure $callStructure does not apply to constructor "
+ message: "Selector $selector does not apply to constructor "
"$constructor."));
// The redirection chain of this element may not have been resolved through
@@ -857,7 +856,7 @@ class CompileTimeConstantEvaluator extends Visitor<AstConstant> {
fieldConstants.map((e) => e.value).toList()),
type,
constructor,
- callStructure,
+ selector,
concreteArguments.map((e) => e.expression).toList()));
}
@@ -995,12 +994,12 @@ class ConstructorEvaluator extends CompileTimeConstantEvaluator {
Function compileArgument = (element) => definitions[element];
Function compileConstant = handler.compileConstant;
FunctionElement target = constructor.definingConstructor.implementation;
- CallStructure.addForwardingElementArgumentsToList(
- constructor,
- compiledArguments,
- target,
- compileArgument,
- compileConstant);
+ Selector.addForwardingElementArgumentsToList(constructor,
+ compiledArguments,
+ target,
+ compileArgument,
+ compileConstant,
+ compiler.world);
evaluateSuperOrRedirectSend(compiledArguments, target);
return;
}
@@ -1020,8 +1019,7 @@ class ConstructorEvaluator extends CompileTimeConstantEvaluator {
FunctionElement target = elements[call];
List<AstConstant> compiledArguments =
evaluateArgumentsToConstructor(
- call, elements.getSelector(call).callStructure,
- call.arguments, target,
+ call, elements.getSelector(call), call.arguments, target,
compileArgument: evaluateConstant);
evaluateSuperOrRedirectSend(compiledArguments, target);
foundSuperOrRedirect = true;
@@ -1050,9 +1048,9 @@ class ConstructorEvaluator extends CompileTimeConstantEvaluator {
// If we do not find a default constructor, an error was reported
// already and compilation will fail anyway. So just ignore that case.
if (targetConstructor != null) {
+ Selector selector = new Selector.callDefaultConstructor();
List<AstConstant> compiledArguments = evaluateArgumentsToConstructor(
- functionNode, CallStructure.NO_ARGS,
- const Link<Node>(), targetConstructor);
+ functionNode, selector, const Link<Node>(), targetConstructor);
evaluateSuperOrRedirectSend(compiledArguments, targetConstructor);
}
}
« no previous file with comments | « pkg/compiler/lib/src/common.dart ('k') | pkg/compiler/lib/src/constants/expressions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698