Method: ArrayType#show_tree

Defined in:
lib/tecsgen/core/types.rb

#show_tree(indent) ⇒ Object



1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
# File 'lib/tecsgen/core/types.rb', line 1308

def show_tree(indent)
  indent.times { print "  " }
  puts "ArrayType: #{locale_str}"
  super(indent + 1)
  (indent + 1).times { print "  " }
  puts "type:"
  @type.show_tree(indent + 2)
  (indent + 1).times { print "  " }
  puts "subscript:"
  if @subscript
    @subscript.show_tree(indent + 2)
  else
    (indent + 2).times { print "  " }
    puts "no subscript"
  end
end