Examples of UINT8


Examples of tv.porst.splib.binaryparser.UINT8

* Parses ActionScript 3 'findpropstrict' instructions.
*/
public final class AS3FindpropstrictParser {

  public static AS3Findpropstrict 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 AS3Findpropstrict(opcode, index);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.