blob: 0317d011d37953443e909de88f496d6a6b65ad67 [file] [log] [blame]
function a() {}
function foo()
{
for each(item.name in list)
{
// do nothing
}
for(;;) {}
try
{
// test
}
catch(e if e instanceof TypeError)
{
}
finally
{
a = 100;
}
do
{
}
while (iterator.next() != null);
// for (item in list)
// {
// // do nothing
// }
if (a > b)
{
}
else
{
a = b;
}
while (iterator.next() != null)
{
// do nothing
}
with(obj)
{
// do nothing
}
}