Class: Nendo::DelayedCallPacket

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(_origname, _rubysym, _pred, _args) ⇒ DelayedCallPacket

Returns a new instance of DelayedCallPacket.



249
250
251
252
253
254
# File 'lib/nendo.rb', line 249

def initialize( _origname, _rubysym, _pred, _args )
  @origname = _origname
  @rubysym  = _rubysym
  @pred     = _pred
  @args     = _args
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



255
256
257
# File 'lib/nendo.rb', line 255

def args
  @args
end

#orignameObject (readonly)

Returns the value of attribute origname.



255
256
257
# File 'lib/nendo.rb', line 255

def origname
  @origname
end

#predObject (readonly)

Returns the value of attribute pred.



255
256
257
# File 'lib/nendo.rb', line 255

def pred
  @pred
end

#rubysymObject (readonly)

Returns the value of attribute rubysym.



255
256
257
# File 'lib/nendo.rb', line 255

def rubysym
  @rubysym
end