UNPKG

@awayfl/avm2

Version:

Virtual machine for executing AS3 code

8 lines (7 loc) 205 B
import { scopeStacks } from './scopeStacks'; export function getCurrentScope() { if (scopeStacks.length === 0) { return null; } return scopeStacks[scopeStacks.length - 1].topScope(); }