DataProvider in tests for ASC2 compiled SWF

This commit is contained in:
Jindra Petřík
2021-01-29 10:53:53 +01:00
parent 0eff854a49
commit 6aad6052b3
9 changed files with 332 additions and 310 deletions

View File

@@ -8,7 +8,8 @@ package tests
var v:Vector.<String> = new Vector.<String>();
v.push("hello");
v[0] = "hi";
v[5 * 8 - 39] = "hi2";
var a:int = 5;
v[a * 8 - 39] = "hi2";
trace(v[0]);
}
}