class AbstractSyntaxTreeKit::Node::DOT2

Attributes

begin[R]
end[R]

Public Class Methods

new(node:, nd_begin:, nd_end:) click to toggle source
Calls superclass method AbstractSyntaxTreeKit::Node::new
# File lib/astkit/node/dot2.rb, line 6
def initialize(node:, nd_begin:, nd_end:)
  super(node)
  @begin = nd_begin
  @end = nd_end
end