class List::Matcher::Leaf

Attributes

c[R]

Public Class Methods

new(engine, c) click to toggle source
Calls superclass method List::Matcher::Node::new
# File lib/list_matcher.rb, line 766
def initialize(engine, c)
  super(engine, nil)
  @c = c
end

Public Instance Methods

atomic?() click to toggle source
# File lib/list_matcher.rb, line 771
def atomic?
  true
end
convert() click to toggle source
# File lib/list_matcher.rb, line 775
def convert
  rx = quote c
  finalize rx
end