UNPKG

@awayfl/avm2

Version:

Virtual machine for executing AS3 code

9 lines (8 loc) 301 B
import { Errors } from '../errors'; import { axIsXMLCollection } from './axIsXMLCollection'; export function axGetDescendants(object, mn, sec) { if (!axIsXMLCollection(object, sec)) { sec.throwError('TypeError', Errors.DescendentsError, object); } return object.descendants(mn); }