/*
* x = {echo $args};
*/
private void testClosure2(CharSequence text) throws Exception
{
Tokenizer t = new Tokenizer(text);
assertEquals(Type.WORD, t.next());
assertEquals("x", t.value().toString());
assertEquals(Type.ASSIGN, t.next());
assertEquals(Type.CLOSURE, t.next());
assertEquals(" echo '}' $args //comment's\n", t.value().toString());
assertEquals(Type.NEWLINE, t.next());
assertEquals(Type.EOT, t.next());
}