# File lib/kwartz/node.rb, line 245
    def set_attrs(hash, flag_escape=nil)
      hash.each do |aname, expr_str|
        next if !expr_str || expr_str.empty?
        @attrs ||= {}
        @attrs[aname] = NativeExpression.new(expr_str, flag_escape)
      end if hash
    end