class SheepAst::RegexMatch

Regex Match instance

@api public

Public Instance Methods

init() click to toggle source
# File lib/sheep_ast/match/regex_match.rb, line 49
def init
  @expr = ''
end
kind?() click to toggle source
# File lib/sheep_ast/match/regex_match.rb, line 44
def kind?
  return MatchKind::Regex
end
new(key, sym = nil, **options) click to toggle source
# File lib/sheep_ast/match/regex_match.rb, line 39
def new(key, sym = nil, **options)
  return T.unsafe(RegexMatch).new(key, sym, **options)
end