Method: VerilogTools::AST#initialize

Defined in:
lib/HDLRuby/verilog_parser.rb

#initialize(type, *children) ⇒ AST

Build a new AST +type+ node with +children+.



39
40
41
42
# File 'lib/HDLRuby/verilog_parser.rb', line 39

def initialize(type, *children)
  @type = type.to_sym
  @children = children
end