Sha256: 3f50ae6aa4b77ee6e3db40d734225d32ab2ccf0968672cc957d73e1f7b5f4974
Contents?: true
Size: 239 Bytes
Versions: 9
Compression:
Stored size: 239 Bytes
Contents
# frozen-string-literal: true module Faml class Error < StandardError attr_accessor :lineno def initialize(message, lineno) super(message) @lineno = lineno end end class UnparsableRubyCode < Error end end
Version data entries
9 entries across 9 versions & 1 rubygems