AS3 test methods separated to classes, Fixed AS3: get/set slot for global scope

This commit is contained in:
Jindra Petřík
2021-01-18 19:14:51 +01:00
parent cdc3eec1f2
commit cade4549fb
94 changed files with 1999 additions and 138 deletions

View File

@@ -0,0 +1,14 @@
package tests
{
public class TestRegExp
{
public function run():*
{
var a1:* = /[a-z\r\n0-9\\]+/i;
var a2:* = /[a-z\r\n0-9\\]+/i;
var b1:* = /[0-9AB]+/;
var b2:* = /[0-9AB]+/;
}
}
}