summaryrefslogtreecommitdiff
path: root/tool/lrama/lib/lrama/state/shift_reduce_conflict.rb
blob: f80bd5f352453f3329c93c0c52cdcaddf79779a7 (plain)
1
2
3
4
5
6
7
8
9
module Lrama
  class State
    class ShiftReduceConflict < Struct.new(:symbols, :shift, :reduce, keyword_init: true)
      def type
        :shift_reduce
      end
    end
  end
end