|
Gregg Reynolds wrote:
return { q:foo{ id='x1', ...} q:foo{ id='x2', ...} ... }
It seems you're getting a syntax error since there must be commas in between the method calls:
return { q:foo{ id='x1', ...}, --> comma q:foo{ id='x2', ...} ... } -- Shmuel