Index: src/preparser.cc |
diff --git a/src/preparser.cc b/src/preparser.cc |
index 04757b379f4a788684b267e95f29acc890430f63..44ba38b0b3e1239a137d3a59e15d865e33a283c8 100644 |
--- a/src/preparser.cc |
+++ b/src/preparser.cc |
@@ -232,8 +232,9 @@ |
Statement statement = ParseStatementListItem(ok); |
if (!*ok) return; |
- if (is_strong(language_mode()) && scope_->is_function_scope() && |
- IsClassConstructor(function_state_->kind())) { |
+ if (is_strong(language_mode()) && |
+ scope_->is_function_scope() && |
+ i::IsConstructor(function_state_->kind())) { |
Scanner::Location this_loc = function_state_->this_location(); |
Scanner::Location super_loc = function_state_->super_location(); |
if (this_loc.beg_pos != old_this_loc.beg_pos && |
@@ -261,7 +262,7 @@ |
} else if (use_strong_found) { |
scope_->SetLanguageMode(static_cast<LanguageMode>( |
scope_->language_mode() | STRONG)); |
- if (IsClassConstructor(function_state_->kind())) { |
+ if (i::IsConstructor(function_state_->kind())) { |
// "use strong" cannot occur in a class constructor body, to avoid |
// unintuitive strong class object semantics. |
PreParserTraits::ReportMessageAt( |
@@ -638,7 +639,7 @@ |
// Fall through. |
case Token::SUPER: |
if (is_strong(language_mode()) && |
- IsClassConstructor(function_state_->kind())) { |
+ i::IsConstructor(function_state_->kind())) { |
bool is_this = peek() == Token::THIS; |
Expression expr = Expression::Default(); |
ExpressionClassifier classifier; |
@@ -789,7 +790,7 @@ |
tok != Token::RBRACE && |
tok != Token::EOS) { |
if (is_strong(language_mode()) && |
- IsClassConstructor(function_state_->kind())) { |
+ i::IsConstructor(function_state_->kind())) { |
int pos = peek_position(); |
ReportMessageAt(Scanner::Location(pos, pos + 1), |
MessageTemplate::kStrongConstructorReturnValue); |