Index: src/parser.h |
diff --git a/src/parser.h b/src/parser.h |
index 518b443e3d4e9b95d587d3d17b9f8aa964d81113..a1895f0ead6bdc2e16b24304e99f6efaed7b666d 100644 |
--- a/src/parser.h |
+++ b/src/parser.h |
@@ -413,11 +413,6 @@ class ParserTraits { |
return string->AsArrayIndex(index); |
} |
- bool IsConstructorProperty(ObjectLiteral::Property* property) { |
- return property->key()->raw_value()->EqualsString( |
- ast_value_factory()->constructor_string()); |
- } |
- |
static Expression* GetPropertyValue(ObjectLiteral::Property* property) { |
return property->value(); |
} |
@@ -427,7 +422,9 @@ class ParserTraits { |
static void PushLiteralName(FuncNameInferrer* fni, const AstRawString* id) { |
fni->PushLiteralName(id); |
} |
+ |
void PushPropertyName(FuncNameInferrer* fni, Expression* expression); |
+ |
static void InferFunctionName(FuncNameInferrer* fni, |
FunctionLiteral* func_to_infer) { |
fni->AddFunction(func_to_infer); |