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