class AbstractSyntaxTreeKit::Node::DSTR

Attributes

interpolation[R]
pre_str[R]
tail_str[R]

Public Class Methods

new(node:, pre_str:, interpolation:, tail_str:) click to toggle source
Calls superclass method AbstractSyntaxTreeKit::Node::new
# File lib/astkit/node/dstr.rb, line 6
def initialize(node:, pre_str:, interpolation:, tail_str:)
  super(node)
  @pre_str = pre_str
  @interpolation = interpolation
  @tail_str = tail_str
end