Fixed AS3 p-code - remove findpropglobal,findpropglobalstrict - they are internal only

This commit is contained in:
Jindra Petřík
2023-03-12 13:02:33 +01:00
parent 831dc0ebdd
commit e907a37d2e
3 changed files with 5 additions and 3 deletions

View File

@@ -548,7 +548,7 @@ public class AVM2Code implements Cloneable {
/*0x59*/ new GetDescendantsIns(),
/*0x5A*/ new NewCatchIns(),
/*0x5B*/ new DelDescendantsIns(), //deldescendants according to Flex, findpropglobalstrict(internal-only) according to Tamarin
/*0x5C*/ new FindPropGlobalIns(), //Tamarin (internal-only)
/*0x5C*/ //new FindPropGlobalIns(), //Tamarin (internal-only)
/*0x5D*/ new FindPropertyStrictIns(),
/*0x5E*/ new FindPropertyIns(),
/*0x5F*/ new FindDefIns(),

View File

@@ -30,7 +30,8 @@ import com.jpexs.decompiler.flash.abc.avm2.instructions.InstructionDefinition;
*
* @author JPEXS
*
* source: https://github.com/magicalhobo/SWFWire/blob/master/SWFWireDecompiler/src/com/swfwire/decompiler/abc/ABCInstructions.as
* source: https://github.com/adobe-flash/avmplus/blob/65a05927767f3735db37823eebf7d743531f5d37/utils/abcdis/abc/Constants.as
* (internal only)
*/
public class FindPropGlobalIns extends InstructionDefinition {

View File

@@ -30,7 +30,8 @@ import com.jpexs.decompiler.flash.abc.avm2.instructions.InstructionDefinition;
*
* @author JPEXS
*
* source: https://github.com/magicalhobo/SWFWire/blob/master/SWFWireDecompiler/src/com/swfwire/decompiler/abc/ABCInstructions.as
* source: https://github.com/adobe-flash/avmplus/blob/65a05927767f3735db37823eebf7d743531f5d37/utils/abcdis/abc/Constants.as
* (internal only)
*/
public class FindPropGlobalStrictIns extends InstructionDefinition {