Fixed AS3 - direct editation - bit not

This commit is contained in:
Jindra Petřík
2021-12-04 15:15:47 +01:00
parent c1dd430f43
commit 7599ba5dd0
9 changed files with 57 additions and 2 deletions

View File

@@ -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>

View File

@@ -77,6 +77,7 @@ package
TestMultipleCondition;
TestNamedAnonFunctions;
TestNames;
TestNegate;
TestNumberCall;
TestOptionalParameters;
TestParamNames;

View File

@@ -0,0 +1,12 @@
package tests
{
public class TestNegate
{
public function run():void
{
var a:int = 5;
var b:int = ~a;
}
}
}