From 9d8a2ce75c15c5564f0eb598f6d28f40dbb69947 Mon Sep 17 00:00:00 2001 From: Adrian Thurston Date: Sun, 5 Jan 2014 17:58:14 -0500 Subject: removed popScope from ObjectDef --- src/parser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parser.cc') diff --git a/src/parser.cc b/src/parser.cc index 3a1964d8..8820475c 100644 --- a/src/parser.cc +++ b/src/parser.cc @@ -970,5 +970,5 @@ void BaseParser::pushScope() void BaseParser::popScope() { - curLocalFrame->popScope(); + curLocalFrame->curScope = curLocalFrame->curScope->parentScope; } -- cgit v1.2.1