mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-30 09:06:23 +00:00
15 lines
226 B
ActionScript
15 lines
226 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestStringCoerce
|
|
{
|
|
private var a:Object = null;
|
|
|
|
public function run():*
|
|
{
|
|
var text1:String = this.a["test"];
|
|
var text2:String = String(this.a["test"]);
|
|
}
|
|
}
|
|
}
|