mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-23 20:34:44 +00:00
22 lines
269 B
ActionScript
22 lines
269 B
ActionScript
package tests
|
|
{
|
|
import flash.utils.Dictionary;
|
|
|
|
public class TestForIn
|
|
{
|
|
public function run():*
|
|
{
|
|
var dic:Dictionary = null;
|
|
var item:* = null;
|
|
for (item in dic)
|
|
{
|
|
trace(item);
|
|
}
|
|
for each (item in dic)
|
|
{
|
|
trace(item);
|
|
}
|
|
}
|
|
}
|
|
}
|