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

Unified Diff: src/parser.h

Issue 807173002: ES6 computed property names (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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: src/parser.h
diff --git a/src/parser.h b/src/parser.h
index 02dfe15f8ef31bdc76b978277433c62951c5d921..0c58869dd639169d027934e465237c49b844af37 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -412,11 +412,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();
}
@@ -426,7 +421,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);

Powered by Google App Engine
This is Rietveld 408576698