class Atomy::Pattern::Wildcard

Public Instance Methods

inline_matches?(gen) click to toggle source
# File lib/atomy/pattern/wildcard.rb, line 9
def inline_matches?(gen)
  gen.pop
  gen.push_true
end
matches?(_) click to toggle source
# File lib/atomy/pattern/wildcard.rb, line 5
def matches?(_)
  true
end
target() click to toggle source
# File lib/atomy/pattern/wildcard.rb, line 14
def target
  Object
end