Title: [181995] trunk/Source/_javascript_Core
Revision
181995
Author
[email protected]
Date
2015-03-25 21:35:31 -0700 (Wed, 25 Mar 2015)

Log Message

Unreviewed, fix debug build.

* bytecompiler/NodesCodegen.cpp:
(JSC::ConstDeclNode::emitCodeSingle):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (181994 => 181995)


--- trunk/Source/_javascript_Core/ChangeLog	2015-03-26 04:34:11 UTC (rev 181994)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-03-26 04:35:31 UTC (rev 181995)
@@ -1,5 +1,12 @@
 2015-03-25  Filip Pizlo  <[email protected]>
 
+        Unreviewed, fix debug build.
+
+        * bytecompiler/NodesCodegen.cpp:
+        (JSC::ConstDeclNode::emitCodeSingle):
+
+2015-03-25  Filip Pizlo  <[email protected]>
+
         Unreviewed, fix CLOOP build.
 
         * dfg/DFGMinifiedID.h:

Modified: trunk/Source/_javascript_Core/bytecompiler/NodesCodegen.cpp (181994 => 181995)


--- trunk/Source/_javascript_Core/bytecompiler/NodesCodegen.cpp	2015-03-26 04:34:11 UTC (rev 181994)
+++ trunk/Source/_javascript_Core/bytecompiler/NodesCodegen.cpp	2015-03-26 04:35:31 UTC (rev 181995)
@@ -1767,7 +1767,7 @@
         // pretty shady - particularly how negligent it is with inteleaving scopes - but it's the
         // behavior that JSC has had for a long time.
         
-        ASSERT(generator.codeType() == FunctinCode);
+        ASSERT(generator.codeType() == FunctionCode);
         
         var = generator.variablePerSymbolTable(m_ident);
         if (!var.isResolved())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to