From 65e3a5ee185b84ea67615f9d06edf982dfc2f591 Mon Sep 17 00:00:00 2001 From: "Mark S. Miller" Date: Mon, 3 Apr 2023 15:45:54 -0700 Subject: [PATCH] fixup! MinMethodGuard migration --- packages/patterns/src/patterns/patternMatchers.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/patterns/src/patterns/patternMatchers.js b/packages/patterns/src/patterns/patternMatchers.js index f92aa0fe60..7a4b5ac22f 100644 --- a/packages/patterns/src/patterns/patternMatchers.js +++ b/packages/patterns/src/patterns/patternMatchers.js @@ -1696,12 +1696,4 @@ export const { M, } = makePatternKit(); -/** - * A method guard, for inclusion in an interface guard, that enforces only that - * all arguments are passable and that the result is passable. (In far classes, - * "any" means any *passable*.) This is the least possible enforcement for a - * method guard, and is implied by all other method guards. - */ -export const MinMethodGuard = M.call().rest(M.any()).returns(M.any()); - MM = M;