*/
public final class AS3GetdescendantsParser {
public static AS3Getdescendants parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");
return new AS3Getdescendants(opcode, index);
}