# File lib/kwartz/converter.rb, line 340
    def build_print_expr_stmt(native_expr, stag_info, etag_info, attr_info=nil)
      head_space = (stag_info || etag_info).head_space
      tail_space = (etag_info || stag_info).tail_space
      native_expr = expand_attr_vars_in_native_expr(native_expr, attr_info) if attr_info
      args = []
      args << head_space if head_space    # TextExpression.new(head_space)
      args << native_expr
      args << tail_space if tail_space    # TextExpression.new(tail_space)
      return PrintStatement.new(args)
    end