Sha256: c30471c6f19b01939d508f87a3e7acca9928d5942e7c4e3b8821245cbb8381e3
Contents?: true
Size: 254 Bytes
Versions: 10
Compression:
Stored size: 254 Bytes
Contents
module Antlr4::Runtime class TextChunk < Chunk attr_reader :text def initialize(text) raise IllegalArgumentException, 'text cannot be null' if text.nil? @text = text end def to_s "'" + @text + "'" end end end
Version data entries
10 entries across 10 versions & 1 rubygems