Title: [159216] trunk/Source/_javascript_Core
Revision
159216
Author
[email protected]
Date
2013-11-13 12:01:49 -0800 (Wed, 13 Nov 2013)

Log Message

r159210 added a period where there previously wasn't one, breaking >100 tests

Rubber-stamped by Oliver Hunt.

* parser/Parser.cpp:
(JSC::::logError):
Remove the extra period.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (159215 => 159216)


--- trunk/Source/_javascript_Core/ChangeLog	2013-11-13 19:54:16 UTC (rev 159215)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-11-13 20:01:49 UTC (rev 159216)
@@ -1,3 +1,13 @@
+2013-11-13  Tim Horton  <[email protected]>
+
+        r159210 added a period where there previously wasn't one, breaking >100 tests
+
+        Rubber-stamped by Oliver Hunt.
+
+        * parser/Parser.cpp:
+        (JSC::::logError):
+        Remove the extra period.
+
 2013-11-13  Oliver Hunt  <[email protected]>
 
         REGRESSION (r158014): Many webpages throw stack overflow exceptions on iOS (because Parser::parseMemberExpression uses ~130K more stack)

Modified: trunk/Source/_javascript_Core/parser/Parser.cpp (159215 => 159216)


--- trunk/Source/_javascript_Core/parser/Parser.cpp	2013-11-13 19:54:16 UTC (rev 159215)
+++ trunk/Source/_javascript_Core/parser/Parser.cpp	2013-11-13 20:01:49 UTC (rev 159216)
@@ -89,7 +89,6 @@
         return;
     StringPrintStream stream;
     printUnexpectedTokenText(stream);
-    stream.print(". ");
     setErrorMessage(stream.toString());
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to