metasploit-framework/lib/rkelly/nodes/postfix_node.rb

12 lines
204 B
Ruby
Raw Normal View History

module RKelly
module Nodes
class PostfixNode < Node
attr_reader :operand
def initialize(operand, operator)
super(operator)
@operand = operand
end
end
end
end