Sha256: 802e3218a11a36e37d59f2699ba9ef027ba3f25a9ccaf5b67b9f51b9be711167
Contents?: true
Size: 314 Bytes
Versions: 6973
Compression:
Stored size: 314 Bytes
Contents
# frozen_string_literal: true module Parser module Source class Map::Heredoc < Map attr_reader :heredoc_body attr_reader :heredoc_end def initialize(begin_l, body_l, end_l) @heredoc_body = body_l @heredoc_end = end_l super(begin_l) end end end end
Version data entries
6,973 entries across 6,950 versions & 50 rubygems