File: clobbering_error.rb

package info (click to toggle)
ruby-whitequark-parser 3.3.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,848 kB
  • sloc: yacc: 40,706; ruby: 20,588; makefile: 12; sh: 8
file content (13 lines) | stat: -rw-r--r-- 331 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Parser
  ##
  # {Parser::ClobberingError} is raised when {Parser::Source::Rewriter}
  # detects a clobbering rewrite action. This class inherits {RuntimeError}
  # rather than {StandardError} for backward compatibility.
  #
  # @api public
  #
  class ClobberingError < RuntimeError
  end
end