for (EsperEPL2GrammarParser.CreateColumnListElementContext colctx : ctx.createColumnListElement()) {
List<EsperEPL2GrammarParser.ClassIdentifierContext> idents = colctx.classIdentifier();
String name = ASTUtil.unescapeClassIdent(idents.get(0));
String type = ASTUtil.unescapeClassIdent(idents.get(1));
boolean array = colctx.b != null;
result.add(new ColumnDesc(name, type, array));
}
return result;
}