]> git.saurik.com Git - cycript.git/blobdiff - Parser.hpp
Fixed non-local return insanity.
[cycript.git] / Parser.hpp
index 2d3a59f4b1417fc53e6e5035832b51fec01ab932..361beaa105fe696b8d7903daef41b0111004be40 100644 (file)
@@ -367,6 +367,7 @@ struct CYContext {
     CYIdentifierUsageVector rename_;
 
     CYNonLocal *nonlocal_;
+    CYNonLocal *nextlocal_;
     unsigned unique_;
 
     CYContext(apr_pool_t *pool, CYOptions &options) :
@@ -374,6 +375,7 @@ struct CYContext {
         options_(options),
         scope_(NULL),
         nonlocal_(NULL),
+        nextlocal_(NULL),
         unique_(0)
     {
     }