Revision: 21652
Author:   [email protected]
Date:     Tue Jun  3 16:12:48 2014 UTC
Log: Misc cleanup (split from the "delay string / value internalization" CL).

- Missing includes / forward declaration
- Parser: Simplifying calling error reporting funcs.

[email protected]
BUG=

Review URL: https://codereview.chromium.org/307393002
http://code.google.com/p/v8/source/detail?r=21652

Modified:
 /branches/bleeding_edge/src/list.h
 /branches/bleeding_edge/src/parser.cc
 /branches/bleeding_edge/src/preparser.h
 /branches/bleeding_edge/src/utils.h

=======================================
--- /branches/bleeding_edge/src/list.h  Tue Jun  3 08:12:43 2014 UTC
+++ /branches/bleeding_edge/src/list.h  Tue Jun  3 16:12:48 2014 UTC
@@ -10,6 +10,7 @@
 namespace v8 {
 namespace internal {

+template<typename T> class Vector;

// ----------------------------------------------------------------------------
 // The list is a template for very light-weight lists. We are not
=======================================
--- /branches/bleeding_edge/src/parser.cc       Tue Jun  3 08:12:43 2014 UTC
+++ /branches/bleeding_edge/src/parser.cc       Tue Jun  3 16:12:48 2014 UTC
@@ -2107,7 +2107,7 @@
     Declare(declaration, mode != VAR, CHECK_OK);
     nvars++;
     if (declaration_scope->num_var_or_const() > kMaxNumFunctionLocals) {
-      ReportMessageAt(scanner()->location(), "too_many_variables");
+      ReportMessage("too_many_variables");
       *ok = false;
       return NULL;
     }
@@ -2405,7 +2405,7 @@
     if (!label.is_null()) {
       message = "unknown_label";
     }
-    ParserTraits::ReportMessageAt(scanner()->location(), message, label);
+    ParserTraits::ReportMessage(message, label);
     *ok = false;
     return NULL;
   }
@@ -2441,7 +2441,7 @@
     if (!label.is_null()) {
       message = "unknown_label";
     }
-    ParserTraits::ReportMessageAt(scanner()->location(), message, label);
+    ParserTraits::ReportMessage(message, label);
     *ok = false;
     return NULL;
   }
@@ -3389,7 +3389,7 @@
       scope_->DeclareParameter(param_name, VAR);
       num_parameters++;
       if (num_parameters > Code::kMaxArguments) {
-        ReportMessageAt(scanner()->location(), "too_many_parameters");
+        ReportMessage("too_many_parameters");
         *ok = false;
         return NULL;
       }
=======================================
--- /branches/bleeding_edge/src/preparser.h     Tue Jun  3 08:12:43 2014 UTC
+++ /branches/bleeding_edge/src/preparser.h     Tue Jun  3 16:12:48 2014 UTC
@@ -1234,8 +1234,7 @@
     default:
       const char* name = Token::String(token);
       ASSERT(name != NULL);
-      Traits::ReportMessageAt(
-          source_location, "unexpected_token", name);
+      Traits::ReportMessageAt(source_location, "unexpected_token", name);
   }
 }

@@ -1249,7 +1248,7 @@
     IdentifierT name = this->GetSymbol(scanner());
     if (allow_eval_or_arguments == kDontAllowEvalOrArguments &&
         strict_mode() == STRICT && this->IsEvalOrArguments(name)) {
-      ReportMessageAt(scanner()->location(), "strict_eval_arguments");
+      ReportMessage("strict_eval_arguments");
       *ok = false;
     }
     return name;
@@ -1326,7 +1325,7 @@
   IdentifierT js_pattern = this->NextLiteralString(scanner(), TENURED);
   if (!scanner()->ScanRegExpFlags()) {
     Next();
-    ReportMessageAt(scanner()->location(), "invalid_regexp_flags");
+    ReportMessage("invalid_regexp_flags");
     *ok = false;
     return Traits::EmptyExpression();
   }
@@ -1669,7 +1668,7 @@
         true, CHECK_OK_CUSTOM(NullExpressionList));
     result->Add(argument, zone_);
     if (result->length() > Code::kMaxArguments) {
-      ReportMessageAt(scanner()->location(), "too_many_arguments");
+      ReportMessage("too_many_arguments");
       *ok = false;
       return this->NullExpressionList();
     }
@@ -2152,17 +2151,14 @@
     if (IsDataDataConflict(old_type, type)) {
       // Both are data properties.
       if (strict_mode_ == SLOPPY) return;
-      parser()->ReportMessageAt(scanner()->location(),
-                               "strict_duplicate_property");
+      parser()->ReportMessage("strict_duplicate_property");
     } else if (IsDataAccessorConflict(old_type, type)) {
       // Both a data and an accessor property with the same name.
-      parser()->ReportMessageAt(scanner()->location(),
-                               "accessor_data_property");
+      parser()->ReportMessage("accessor_data_property");
     } else {
       ASSERT(IsAccessorAccessorConflict(old_type, type));
       // Both accessors of the same type.
-      parser()->ReportMessageAt(scanner()->location(),
-                               "accessor_get_set");
+      parser()->ReportMessage("accessor_get_set");
     }
     *ok = false;
   }
=======================================
--- /branches/bleeding_edge/src/utils.h Tue Jun  3 08:12:43 2014 UTC
+++ /branches/bleeding_edge/src/utils.h Tue Jun  3 16:12:48 2014 UTC
@@ -12,6 +12,7 @@
 #include "src/allocation.h"
 #include "src/checks.h"
 #include "src/globals.h"
+#include "src/list.h"
 #include "src/platform.h"
 #include "src/vector.h"

--
--
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