@awayfl/avm1
Version:
Virtual machine for executing AS1 and AS2 code
13 lines (11 loc) • 356 B
text/typescript
import { AVM1PropertyFlags, IAVM1Callable, IAVM1PropertyWatcher } from '../runtime';
export class AVM1PropertyDescriptor {
public originalName: string | number;
constructor(public flags: AVM1PropertyFlags,
public value?: any,
public get?: IAVM1Callable,
public set?: IAVM1Callable,
public watcher?: IAVM1PropertyWatcher) {
// Empty block
}
}