Class: Vertigo::Process
- Defined in:
- lib/vertigo/ast_vertigo_rkgen.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#decls ⇒ Object
Returns the value of attribute decls.
-
#sensitivity ⇒ Object
Returns the value of attribute sensitivity.
Attributes inherited from AstNode
Instance Method Summary collapse
-
#initialize(sensitivity = nil, decls = [], body = nil) ⇒ Process
constructor
A new instance of Process.
Methods inherited from AstNode
Constructor Details
#initialize(sensitivity = nil, decls = [], body = nil) ⇒ Process
Returns a new instance of Process.
134 135 136 |
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 134 def initialize sensitivity=nil,decls=[],body=nil @sensitivity,@decls,@body=sensitivity,decls,body end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
133 134 135 |
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 133 def body @body end |
#decls ⇒ Object
Returns the value of attribute decls.
133 134 135 |
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 133 def decls @decls end |
#sensitivity ⇒ Object
Returns the value of attribute sensitivity.
133 134 135 |
# File 'lib/vertigo/ast_vertigo_rkgen.rb', line 133 def sensitivity @sensitivity end |