Reviewers: marja,

Description:
Fix C++ compilation issue

[email protected]
BUG=

Please review this at https://codereview.chromium.org/199743006/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+1, -1 lines):
  M src/preparser.h


Index: src/preparser.h
diff --git a/src/preparser.h b/src/preparser.h
index bbae5ff27e5273e96c8410ada4479e0d55f3e863..5563251ccbbf8b3010ebed457a3d75c634463e8c 100644
--- a/src/preparser.h
+++ b/src/preparser.h
@@ -1626,7 +1626,7 @@ typename Traits::Type::Expression ParserBase<Traits>::ParseAssignmentExpression(
     return expression;
   }

-  if (!IsValidLeftHandSide(expression)) {
+  if (!this->IsValidLeftHandSide(expression)) {
     this->ReportMessageAt(lhs_location, "invalid_lhs_in_assignment", true);
     *ok = false;
     return this->EmptyExpression();


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to