summaryrefslogtreecommitdiff
path: root/tool/lrama/lib/lrama/counterexamples/start_path.rb
blob: 4a6821cd0feec6c05247c1c6b4ec0646124e9182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Lrama
  class Counterexamples
    class StartPath < Path
      def initialize(to_state_item)
        super nil, to_state_item
      end

      def type
        :start
      end

      def transition?
        false
      end

      def production?
        false
      end
    end
  end
end