Fixed: AS3 property resolving for KIND_NAMESPACE (like builtin for Strings, etc.)

This commit is contained in:
Jindra Petřík
2026-02-18 09:42:03 +01:00
parent ad727716fa
commit 7bc96f67f3
10 changed files with 56 additions and 45 deletions

View File

@@ -128,6 +128,7 @@ package
TestPrecedenceX;
TestProperty;
TestRegExp;
TestResolvingBuildIn;
TestRest;
TestSlots;
TestSlots2;

View File

@@ -0,0 +1,11 @@
package tests
{
public class TestResolvingBuildIn
{
public function run():void
{
var i:int = "Hello world".indexOf("world");
}
}
}