Sha256: b2394e1e2adf4decea31eea29eb13c3b3e40c9895f38fbe2cae740ec21ac3e96
Contents?: true
Size: 447 Bytes
Versions: 172
Compression:
Stored size: 447 Bytes
Contents
# frozen_string_literal: true module RuboCop module AST # A node extension for `dstr` nodes. This will be used # in place of a plain node when the builder constructs the AST, making # its methods available to all `dstr` nodes within RuboCop. class DstrNode < StrNode def value child_nodes.map do |child| child.respond_to?(:value) ? child.value : child.source end.join end end end end
Version data entries
172 entries across 166 versions & 22 rubygems