module Airbrake::Backtrace
def match_frame(regexp, stackframe)
Experimental RBS support (using type sampling data from the type_fusion
project).
def match_frame: (Regexp regexp, String stackframe) -> untyped
This signature was generated using 5 samples from 1 application.
def match_frame(regexp, stackframe) match = regexp.match(stackframe) return match if match Patterns::GENERIC.match(stackframe) end