class AbstractSyntaxTreeKit::Node::KW_ARG

Attributes

body[R]
next_keyword_argument[R]

Public Class Methods

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