mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-12 16:02:15 +00:00
Fixed AS3 - direct editation - arguments object on method with activation
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -16,7 +16,7 @@
|
||||
</define>
|
||||
<define append="true">
|
||||
<name>CONFIG::timeStamp</name>
|
||||
<value>'02.12.2021'</value>
|
||||
<value>'04.12.2021'</value>
|
||||
</define>
|
||||
<define append="true">
|
||||
<name>CONFIG::air</name>
|
||||
|
||||
@@ -15,6 +15,7 @@ package
|
||||
*/
|
||||
public class Main extends Sprite
|
||||
{
|
||||
TestActivationArguments;
|
||||
TestArguments;
|
||||
TestCatchFinally;
|
||||
TestChain2;
|
||||
|
||||
16
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestActivationArguments.as
vendored
Normal file
16
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestActivationArguments.as
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestActivationArguments
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var func:Function = function(a:int, b:int):int {
|
||||
return a + b;
|
||||
}
|
||||
if (arguments.length > 0){
|
||||
trace(arguments[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user