| Index: src/ast-value-factory.h
|
| diff --git a/src/ast-value-factory.h b/src/ast-value-factory.h
|
| index 81002e68ca201bd9616990b870e08b74f02bd442..69fc6cc2f459c3763c0808a4a8e6ae209b703341 100644
|
| --- a/src/ast-value-factory.h
|
| +++ b/src/ast-value-factory.h
|
| @@ -241,34 +241,35 @@ class AstValue : public ZoneObject {
|
|
|
|
|
| // For generating constants.
|
| -#define STRING_CONSTANTS(F) \
|
| - F(anonymous_function, "(anonymous function)") \
|
| - F(arguments, "arguments") \
|
| - F(constructor, "constructor") \
|
| - F(default, "default") \
|
| - 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(dot_switch_tag, ".switch_tag") \
|
| - F(empty, "") \
|
| - F(eval, "eval") \
|
| - F(let, "let") \
|
| - F(native, "native") \
|
| - F(new_target, ".new.target") \
|
| - F(next, "next") \
|
| - F(proto, "__proto__") \
|
| - F(prototype, "prototype") \
|
| - F(this, "this") \
|
| - F(this_function, ".this_function") \
|
| - F(undefined, "undefined") \
|
| - F(use_asm, "use asm") \
|
| - F(use_strong, "use strong") \
|
| - F(use_strict, "use strict") \
|
| +#define STRING_CONSTANTS(F) \
|
| + F(anonymous_function, "(anonymous function)") \
|
| + F(arguments, "arguments") \
|
| + F(constructor, "constructor") \
|
| + F(default, "default") \
|
| + 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(dot_switch_tag, ".switch_tag") \
|
| + F(empty, "") \
|
| + F(eval, "eval") \
|
| + F(let, "let") \
|
| + F(native, "native") \
|
| + F(new_target, ".new.target") \
|
| + F(next, "next") \
|
| + F(proto, "__proto__") \
|
| + F(prototype, "prototype") \
|
| + F(rest_parameter, ".rest_parameter") \
|
| + F(this, "this") \
|
| + F(this_function, ".this_function") \
|
| + F(undefined, "undefined") \
|
| + F(use_asm, "use asm") \
|
| + F(use_strong, "use strong") \
|
| + F(use_strict, "use strict") \
|
| F(value, "value")
|
|
|
| #define OTHER_CONSTANTS(F) \
|
|
|