return myExpression;
}
//Either I have an alias type, or I'm an IN declaration
if (classConstant != null){
myExpression = new ConstantExpression(classConstant, generationContext.getBaseExpression());
} else if (generationContext.getParseTreeContext().isRangeVariable(name)) {
myExpression = generateBaseBuilderExpression(generationContext);
} else {
myExpression = generateExpressionForAlias(generationContext);
}