new scala.collection.mutable.ArrayBuffer<Let>();
public Let getTaskFormal(int n, Token token) {
while (taskFormals.size() < n) {
taskFormals.$plus$eq(
new Let("?" + n, token.startPos(), token.endPos(),
java.util.Collections.<Let>emptyList()));
}
return taskFormals.apply(n - 1);
}