Commit a645ab77 authored by Travis Hance's avatar Travis Hance Committed by Travis Hance

make all 'compiled defined names' FAST (even those in classdefs)

parent e6a6a9a4
......@@ -224,6 +224,10 @@ public:
}
VarScopeType getScopeTypeOfName(InternedString name) override {
// HAX
if (isCompilerCreatedName(name))
return VarScopeType::FAST;
if (refersToGlobal(name))
return VarScopeType::GLOBAL;
if (refersToClosure(name))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment