Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(906)

Unified Diff: src/preparser.h

Issue 199743006: Fix C++ compilation issue (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)) {
tfarina 2014/03/19 17:33:01 what was the error? Usually it is good to paste it
rossberg 2014/03/19 18:13:16 The usual C++ idiocy about template parameter depe
this->ReportMessageAt(lhs_location, "invalid_lhs_in_assignment", true);
*ok = false;
return this->EmptyExpression();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698