Class: Nendo::DelayedCallPacket
- Inherits:
-
Object
- Object
- Nendo::DelayedCallPacket
- Defined in:
- lib/nendo.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#origname ⇒ Object
readonly
Returns the value of attribute origname.
-
#pred ⇒ Object
readonly
Returns the value of attribute pred.
-
#rubysym ⇒ Object
readonly
Returns the value of attribute rubysym.
Instance Method Summary collapse
-
#initialize(_origname, _rubysym, _pred, _args) ⇒ DelayedCallPacket
constructor
A new instance of DelayedCallPacket.
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
#args ⇒ Object (readonly)
Returns the value of attribute args.
255 256 257 |
# File 'lib/nendo.rb', line 255 def args @args end |
#origname ⇒ Object (readonly)
Returns the value of attribute origname.
255 256 257 |
# File 'lib/nendo.rb', line 255 def origname @origname end |
#pred ⇒ Object (readonly)
Returns the value of attribute pred.
255 256 257 |
# File 'lib/nendo.rb', line 255 def pred @pred end |
#rubysym ⇒ Object (readonly)
Returns the value of attribute rubysym.
255 256 257 |
# File 'lib/nendo.rb', line 255 def rubysym @rubysym end |