} else if (token.isIdentifier(NULL)) {
functionArgumentList.append((String)null);
} else if (token.isIdentifier()) {
functionArgumentList.append(token.getString());
} else {
throw new Exception("Unexpected token in parameter list:" + token.debugString());
}
token = TextToken.nextToken(in);
if (token.isChar(',')) {