Class: ParseC::FunCall

Inherits:
Object
  • Object
show all
Defined in:
lib/parsec.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ FunCall

Returns a new instance of FunCall.



306
307
308
# File 'lib/parsec.rb', line 306

def initialize( name )
    @name = name
end

Instance Attribute Details

#nameObject (readonly)

Func name.



304
305
306
# File 'lib/parsec.rb', line 304

def name
  @name
end