diff --git a/route.js b/route.js index 4756b1d..63266d7 100644 --- a/route.js +++ b/route.js @@ -1059,7 +1059,7 @@ function Routing(exports) { function walk(m) { if (is_emptyMatcher(m)) return []; if (m instanceof $WildcardSequence) { - return ["...)", m.matcher]; + return ["...)", walk(m.matcher)]; } if (m instanceof $Success) { return ["", serializeSuccess(m.value)];