Fixed #1762 AS call on integer numbers parenthesis

This commit is contained in:
Jindra Petřík
2021-12-01 08:44:30 +01:00
parent 2011684b7f
commit 1928962d6f
17 changed files with 65 additions and 8 deletions

View File

@@ -76,6 +76,7 @@ package
TestMultipleCondition;
TestNamedAnonFunctions;
TestNames;
TestNumberCall;
TestOptionalParameters;
TestParamNames;
TestParamsCount;

View File

@@ -0,0 +1,12 @@
package tests
{
public class TestNumberCall
{
public function run():*
{
var a:String = (5).toString();
var b:String = 5.2.toString();
}
}
}