Method: ArrayType#get_type_str_post

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

#get_type_str_postObject



1250
1251
1252
1253
1254
1255
1256
1257
# File 'lib/tecsgen/core/types.rb', line 1250

def get_type_str_post
  if @subscript
    "[#{@subscript.eval_const(nil)}]#{@type.get_type_str_post}"
  else
    "[]#{@type.get_type_str_post}"
  end
  # "[#{@subscript.to_s}]#{@type.get_type_str_post}"
end