Sha256: a62764d29366bd992866628719fa124de458eab105af5b16b59d68c12daa5442

Contents?: true

Size: 327 Bytes

Versions: 3

Compression:

Stored size: 327 Bytes

Contents

# frozen_string_literal: true

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
lrama-0.7.0 lib/lrama/counterexamples/start_path.rb
lrama-0.6.11 lib/lrama/counterexamples/start_path.rb
lrama-0.6.10 lib/lrama/counterexamples/start_path.rb