File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -299,6 +299,10 @@ package com.cff.anebe.ir
299
299
{
300
300
return new ASInstruction(OP_raw, [ v] );
301
301
}
302
+ public static function Bkpt ():ASInstruction
303
+ {
304
+ return new ASInstruction(OP_bkpt);
305
+ }
302
306
public static function Nop ():ASInstruction
303
307
{
304
308
return new ASInstruction(OP_nop);
@@ -763,6 +767,14 @@ package com.cff.anebe.ir
763
767
{
764
768
return new ASInstruction(OP_astypelate);
765
769
}
770
+ public static function Coerce_u ():ASInstruction
771
+ {
772
+ return new ASInstruction(OP_coerce_u);
773
+ }
774
+ public static function Coerce_o ():ASInstruction
775
+ {
776
+ return new ASInstruction(OP_coerce_o);
777
+ }
766
778
public static function Negate ():ASInstruction
767
779
{
768
780
return new ASInstruction(OP_negate);
@@ -955,5 +967,13 @@ package com.cff.anebe.ir
955
967
{
956
968
return new ASInstruction(OP_debugfile, [ filename] );
957
969
}
970
+ public static function BkptLine (lineNum :uint ):ASInstruction
971
+ {
972
+ return new ASInstruction(OP_bkptline, [ lineNum] );
973
+ }
974
+ public static function Timestamp ():ASInstruction
975
+ {
976
+ return new ASInstruction(OP_timestamp);
977
+ }
958
978
}
959
979
}
You can’t perform that action at this time.
0 commit comments