LOWER
expression ::= LOWER(string_primary)
@see LowerExpression @version 2.4 @since 2.4 @author Pascal Filion
1225122612271228122912301231123212331234123512361237
@Override public void visit(LowerExpression expression) { expression.getExpression().accept(this); LowerExpressionStateObject stateObject = new LowerExpressionStateObject( parent, this.stateObject ); stateObject.setExpression(expression); this.stateObject = stateObject; }
437438439440441442443444445
/** * {@inheritDoc} */ public T lower(T builder) { checkBuilder(builder); StateObject stateObject = new LowerExpressionStateObject(getParent(), pop()); add(stateObject); return (T) this; }