Index: src/ast-value-factory.h |
diff --git a/src/ast-value-factory.h b/src/ast-value-factory.h |
index 4beff01fcdecfa0046fc915828726ff8a9cc151d..2f84163ece0f4b344eb46eeac1d5838483a0399a 100644 |
--- a/src/ast-value-factory.h |
+++ b/src/ast-value-factory.h |
@@ -235,32 +235,33 @@ class AstValue : public ZoneObject { |
// For generating string constants. |
-#define STRING_CONSTANTS(F) \ |
- F(anonymous_function, "(anonymous function)") \ |
- F(arguments, "arguments") \ |
- F(done, "done") \ |
- F(dot, ".") \ |
- F(dot_for, ".for") \ |
- F(dot_generator, ".generator") \ |
- F(dot_generator_object, ".generator_object") \ |
- F(dot_iterator, ".iterator") \ |
- F(dot_module, ".module") \ |
- F(dot_result, ".result") \ |
- F(empty, "") \ |
- F(eval, "eval") \ |
+#define STRING_CONSTANTS(F) \ |
+ F(anonymous_function, "(anonymous function)") \ |
+ F(arguments, "arguments") \ |
+ F(constructor, "constructor") \ |
+ F(done, "done") \ |
+ F(dot, ".") \ |
+ F(dot_for, ".for") \ |
+ F(dot_generator, ".generator") \ |
+ F(dot_generator_object, ".generator_object") \ |
+ F(dot_iterator, ".iterator") \ |
+ F(dot_module, ".module") \ |
+ F(dot_result, ".result") \ |
+ F(empty, "") \ |
+ F(eval, "eval") \ |
F(initialize_const_global, "initializeConstGlobal") \ |
- F(initialize_var_global, "initializeVarGlobal") \ |
- F(make_reference_error, "MakeReferenceError") \ |
- F(make_syntax_error, "MakeSyntaxError") \ |
- F(make_type_error, "MakeTypeError") \ |
- F(module, "module") \ |
- F(native, "native") \ |
- F(next, "next") \ |
- F(proto, "__proto__") \ |
- F(prototype, "prototype") \ |
- F(this, "this") \ |
- F(use_asm, "use asm") \ |
- F(use_strict, "use strict") \ |
+ F(initialize_var_global, "initializeVarGlobal") \ |
+ F(make_reference_error, "MakeReferenceError") \ |
+ F(make_syntax_error, "MakeSyntaxError") \ |
+ F(make_type_error, "MakeTypeError") \ |
+ F(module, "module") \ |
+ F(native, "native") \ |
+ F(next, "next") \ |
+ F(proto, "__proto__") \ |
+ F(prototype, "prototype") \ |
+ F(this, "this") \ |
+ F(use_asm, "use asm") \ |
+ F(use_strict, "use strict") \ |
F(value, "value") |