# File racc/grammar.rb, line 735
def UserAction.empty
new(nil, nil)
end
# File racc/grammar.rb, line 741
def initialize(src, proc)
@source = src
@proc = proc
end
# File racc/grammar.rb, line 757
def empty?
not @proc and not @source
end
# File racc/grammar.rb, line 761
def name
"{action type=#{@source || @proc || 'nil'}}"
end