class AbstractSyntaxTreeKit::Node::CLASS

Attributes

body[R]
path[R]
superclass[R]

Public Class Methods

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