UNPKG

@awayfl/avm2

Version:

Virtual machine for executing AS3 code

7 lines (6 loc) 203 B
import { Errors } from '../errors'; export function checkNullParameter(argument, name, sec) { if (argument == undefined) { sec.throwError('TypeError', Errors.NullPointerError, name); } }