class Vertigo::FuncDecl

Attributes

body[RW]
decls[RW]
formal_args[RW]
name[RW]
return_type[RW]

Public Class Methods

new(name=nil,formal_args=[],return_type=nil,decls=nil,body=nil) click to toggle source
# File lib/vertigo/ast_vertigo_rkgen.rb, line 575
def initialize name=nil,formal_args=[],return_type=nil,decls=nil,body=nil
  @name,@formal_args,@return_type,@decls,@body=name,formal_args,return_type,decls,body
end