# File lib/runt/expressionbuilder.rb, line 48
  def add(expr, op)
    @ctx ||= expr
    @ctx = @ctx.send(op, expr) unless @ctx == expr
    @ctx # explicit return, previous line may not execute
  end