mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-25 21:55:55 +00:00
renamed new as3 test swfs to have as3 prefix and unique SWF name
This commit is contained in:
19
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestStringConcat.as
vendored
Normal file
19
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestStringConcat.as
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestStringConcat
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var k:int = 8;
|
||||
this.traceIt("hello" + 5 * 6);
|
||||
this.traceIt("hello" + (k - 1));
|
||||
this.traceIt("hello" + 5 + 6);
|
||||
}
|
||||
|
||||
private function traceIt(s:String) : void
|
||||
{
|
||||
trace(s);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user