* Parses ActionScript 3 'ifstricteq' instructions.
*/
public final class AS3IfstricteqParser {
public static AS3Ifstricteq 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 AS3Ifstricteq(opcode, offset);
}