class Aspen::CustomGrammar::AST::Nodes::CaptureSegment

Attributes

label[R]
type[R]
var_name[R]

Public Class Methods

new(type: , var_name: , label: ) click to toggle source
# File lib/aspen/custom_grammar/ast/nodes/capture_segment.rb, line 9
def initialize(type: , var_name: , label: )
  @type     = type
  @var_name = var_name
  @label    = label
end