*/
public final class AS3IfstrictneParser {
public static AS3Ifstrictne parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
final INT24 offset = parseINT24(parser, 0x00006, fieldName + "::offset");
return new AS3Ifstrictne(opcode, offset);
}