File: error.rb

package info (click to toggle)
ruby-js-regex 3.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 184 kB
  • sloc: ruby: 1,198; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 174 bytes parent folder | download
1
2
3
4
5
6
7
# frozen_string_literal: true

class JsRegex
  # This is mixed into errors, e.g. those thrown by the parser,
  # allowing to `rescue JsRegex::Error`.
  module Error; end
end