We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9323577 commit 77a2fd0Copy full SHA for 77a2fd0
fastparse/src-3/fastparse/package.scala
@@ -41,7 +41,7 @@ package object fastparse extends fastparse.SharedPackageDefs {
41
/**
42
* Used by for-comprehensions.
43
*/
44
- inline def withFilter(f: T => Boolean)(using ctx: P[Any]): P[T] = MacroInlineImpls.filterInline[T](parse0)(f)(ctx)
+ inline def withFilter(f: T => Boolean)(using ctx: P[Any]): P[T] = filter(f)
45
46
/** Either-or operator: tries to parse the left-hand-side, and if that
47
* fails it backtracks and tries to pass the right-hand-side. Can be
0 commit comments