class AbstractSyntaxTreeKit::Node::MODULE
Attributes
body[R]
path[R]
Public Class Methods
new(node:, path:, body:)
click to toggle source
Calls superclass method
AbstractSyntaxTreeKit::Node::new
# File lib/astkit/node/module.rb, line 6 def initialize(node:, path:, body:) super(node) @path = path @body = body end