Class: Lrama::Counterexamples::StartPath
- Defined in:
- lib/lrama/counterexamples/path.rb
Instance Method Summary collapse
-
#initialize(to_state_item) ⇒ StartPath
constructor
A new instance of StartPath.
- #production? ⇒ Boolean
- #transition? ⇒ Boolean
- #type ⇒ Object
Methods inherited from Path
Constructor Details
#initialize(to_state_item) ⇒ StartPath
Returns a new instance of StartPath.
24 25 26 |
# File 'lib/lrama/counterexamples/path.rb', line 24 def initialize(to_state_item) super nil, to_state_item end |
Instance Method Details
#production? ⇒ Boolean
36 37 38 |
# File 'lib/lrama/counterexamples/path.rb', line 36 def production? false end |
#transition? ⇒ Boolean
32 33 34 |
# File 'lib/lrama/counterexamples/path.rb', line 32 def transition? false end |
#type ⇒ Object
28 29 30 |
# File 'lib/lrama/counterexamples/path.rb', line 28 def type :start end |