UNPKG

@awayfl/avm2

Version:

Virtual machine for executing AS3 code

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