Title: [181976] trunk/Source/_javascript_Core
Revision
181976
Author
[email protected]
Date
2015-03-25 15:42:39 -0700 (Wed, 25 Mar 2015)

Log Message

Fix formatting in BuiltinExecutables
https://bugs.webkit.org/show_bug.cgi?id=143061

Patch by Joseph Pecoraro <[email protected]> on 2015-03-25
Reviewed by Ryosuke Niwa.

* builtins/BuiltinExecutables.cpp:
(JSC::BuiltinExecutables::createExecutableInternal):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (181975 => 181976)


--- trunk/Source/_javascript_Core/ChangeLog	2015-03-25 22:41:04 UTC (rev 181975)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-03-25 22:42:39 UTC (rev 181976)
@@ -1,5 +1,15 @@
 2015-03-25  Joseph Pecoraro  <[email protected]>
 
+        Fix formatting in BuiltinExecutables
+        https://bugs.webkit.org/show_bug.cgi?id=143061
+
+        Reviewed by Ryosuke Niwa.
+
+        * builtins/BuiltinExecutables.cpp:
+        (JSC::BuiltinExecutables::createExecutableInternal):
+
+2015-03-25  Joseph Pecoraro  <[email protected]>
+
         ES6: Classes: Program level class statement throws exception in strict mode
         https://bugs.webkit.org/show_bug.cgi?id=143038
 

Modified: trunk/Source/_javascript_Core/builtins/BuiltinExecutables.cpp (181975 => 181976)


--- trunk/Source/_javascript_Core/builtins/BuiltinExecutables.cpp	2015-03-25 22:41:04 UTC (rev 181975)
+++ trunk/Source/_javascript_Core/builtins/BuiltinExecutables.cpp	2015-03-25 22:42:39 UTC (rev 181976)
@@ -97,7 +97,7 @@
     RELEASE_ASSERT(body);
     for (const auto& closedVariable : program->closedVariables()) {
         if (closedVariable == m_vm.propertyNames->arguments.impl())
-        continue;
+            continue;
         
         if (closedVariable == m_vm.propertyNames->undefinedKeyword.impl())
             continue;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to