Index: src/ast.h |
diff --git a/src/ast.h b/src/ast.h |
index 02f7df64b0d62bbaa9c1eb717ce1db6f8d4939b5..439e46dca458c8ac47209a86c6099f24f86fc191 100644 |
--- a/src/ast.h |
+++ b/src/ast.h |
@@ -2466,7 +2466,7 @@ class FunctionLiteral FINAL : public Expression { |
int SourceSize() const { return end_position() - start_position(); } |
bool is_expression() const { return IsExpression::decode(bitfield_); } |
bool is_anonymous() const { return IsAnonymous::decode(bitfield_); } |
- StrictMode strict_mode() const; |
+ LanguageMode language_mode() const; |
bool uses_super_property() const; |
bool uses_super_constructor_call() const; |