mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-18 13:41:54 +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"]);
|
|
}
|
|
}
|
|
}
|