Class: StructDecl

Inherits:
TopDecl show all
Defined in:
lib/ast.rb

Instance Method Summary collapse

Methods inherited from ASTNode

#doc_str

Instance Method Details

#to_sObject



97
98
99
100
# File 'lib/ast.rb', line 97

def to_s
  members_str = members.join ''
  "struct #{name}#{doc_str}\n#{members_str}end"
end