class SheepAst::AnyMatch

Exact match instance

Public Instance Methods

init() click to toggle source
# File lib/sheep_ast/match/any_match.rb, line 48
def init
  @expr = ''
end
kind?() click to toggle source
# File lib/sheep_ast/match/any_match.rb, line 42
def kind?
  return MatchKind::Any
end
new(key, sym = nil, **options) click to toggle source
# File lib/sheep_ast/match/any_match.rb, line 34
def new(key, sym = nil, **options)
  am = T.unsafe(AnyMatch).new(key, sym, **options)
  am.init
  return am
end