mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-18 15:18:11 +00:00
Fixed #1762 AS call on integer numbers parenthesis
This commit is contained in:
@@ -76,6 +76,7 @@ package
|
||||
TestMultipleCondition;
|
||||
TestNamedAnonFunctions;
|
||||
TestNames;
|
||||
TestNumberCall;
|
||||
TestOptionalParameters;
|
||||
TestParamNames;
|
||||
TestParamsCount;
|
||||
|
||||
12
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestNumberCall.as
vendored
Normal file
12
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestNumberCall.as
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestNumberCall
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var a:String = (5).toString();
|
||||
var b:String = 5.2.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user