UNPKG

@awayfl/avm2

Version:

Virtual machine for executing AS3 code

17 lines (16 loc) 456 B
/** * Naming Conventions: * * mn: multiname; * nm: name * ns: namespace * nss: namespace set * * Parsing is a combination of lazy and eager evaluation. String parsing is deferred until * it is needed for multiname parsing. */ import { Namespace } from './lazy/Namespace'; import { internNamespace } from './lazy/internNamespace'; export function initlazy() { Namespace.PUBLIC = internNamespace(0 /* NamespaceType.Public */, ''); }