We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a2fd0 commit 5edb560Copy full SHA for 5edb560
fastparse/src-3/fastparse/package.scala
@@ -41,7 +41,8 @@ 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] = filter(f)
+ inline def withFilter(f: T => Boolean)(using ctx: P[Any]): P[T] =
45
+ MacroInlineImpls.filterInline[T](parse0)(f)(ctx)
46
47
/** Either-or operator: tries to parse the left-hand-side, and if that
48
* fails it backtracks and tries to pass the right-hand-side. Can be
0 commit comments