Class: DepGraph
- Inherits:
-
Struct
- Object
- Struct
- DepGraph
- Defined in:
- lib/dake/resolver.rb
Overview
the data struct needed by the executor note that this is not nessesarily the complete graph, the graph is only used to produce the given targets
Instance Attribute Summary collapse
-
#dep_step ⇒ Object
Returns the value of attribute dep_step.
-
#leaf_step ⇒ Object
Returns the value of attribute leaf_step.
-
#root_step ⇒ Object
Returns the value of attribute root_step.
-
#step_list ⇒ Object
Returns the value of attribute step_list.
-
#step_target ⇒ Object
Returns the value of attribute step_target.
-
#succ_step ⇒ Object
Returns the value of attribute succ_step.
Instance Attribute Details
#dep_step ⇒ Object
Returns the value of attribute dep_step
4 5 6 |
# File 'lib/dake/resolver.rb', line 4 def dep_step @dep_step end |
#leaf_step ⇒ Object
Returns the value of attribute leaf_step
4 5 6 |
# File 'lib/dake/resolver.rb', line 4 def leaf_step @leaf_step end |
#root_step ⇒ Object
Returns the value of attribute root_step
4 5 6 |
# File 'lib/dake/resolver.rb', line 4 def root_step @root_step end |
#step_list ⇒ Object
Returns the value of attribute step_list
4 5 6 |
# File 'lib/dake/resolver.rb', line 4 def step_list @step_list end |
#step_target ⇒ Object
Returns the value of attribute step_target
4 5 6 |
# File 'lib/dake/resolver.rb', line 4 def step_target @step_target end |
#succ_step ⇒ Object
Returns the value of attribute succ_step
4 5 6 |
# File 'lib/dake/resolver.rb', line 4 def succ_step @succ_step end |