mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-03 18:44:46 +00:00
Fixed AS3 - direct editation - bit not
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>
|
||||
|
||||
@@ -77,6 +77,7 @@ package
|
||||
TestMultipleCondition;
|
||||
TestNamedAnonFunctions;
|
||||
TestNames;
|
||||
TestNegate;
|
||||
TestNumberCall;
|
||||
TestOptionalParameters;
|
||||
TestParamNames;
|
||||
|
||||
12
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestNegate.as
vendored
Normal file
12
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestNegate.as
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestNegate
|
||||
{
|
||||
public function run():void
|
||||
{
|
||||
var a:int = 5;
|
||||
var b:int = ~a;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user