Class: Mirah::AST::Not

Inherits:
Node
  • Object
show all
Defined in:
lib/mirah/ast/flow.rb

Instance Attribute Summary

Attributes inherited from Node

#children, #inferred_type, #newline, #parent, #position

Instance Method Summary collapse

Methods inherited from Node

#<<, ===, #[], #[]=, #_dump, _load, #_set_parent, child, child_name, #child_nodes, #each, #empty?, #expr?, #inferred_type!, #initialize_copy, #insert, #inspect, #inspect_children, #line_number, #log, #precompile, #resolve_if, #resolved!, #resolved?, #simple_name, #string_value, #temp, #to_s, #top_level?, #validate_child, #validate_children

Constructor Details

#initialize(parent, line_number, &block) ⇒ Not

Returns a new instance of Not.



181
182
183
# File 'lib/mirah/ast/flow.rb', line 181

def initialize(parent, line_number, &block)
  super(parent, line_number, &block)
end