summaryrefslogtreecommitdiff
path: root/tool/lrama/lib/lrama/state/shift.rb
blob: 2021eb61f61041cf621d47c926263ca121d9b3bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Lrama
  class State
    class Shift
      attr_reader :next_sym, :next_items
      attr_accessor :not_selected

      def initialize(next_sym, next_items)
        @next_sym = next_sym
        @next_items = next_items
      end
    end
  end
end