From 616ce8051f59f956fedc57780f5a8fefa16dd61d Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 12 Jun 2022 14:19:07 -0400 Subject: Re-named "partial_list" to "list.partial". --- stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stdlib/source/parser') diff --git a/stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux b/stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux index 159c1c62e..0eca3ae24 100644 --- a/stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux +++ b/stdlib/source/parser/lux/tool/compiler/language/lux/analysis.lux @@ -91,7 +91,7 @@ (Parser ) (function (_ input) (case input - (pattern (partial_list ( x) input')) + (pattern (list.partial ( x) input')) {try.#Success [input' x]} _ @@ -101,7 +101,7 @@ (-> (Parser Any)) (function (_ input) (case input - (pattern (partial_list ( actual) input')) + (pattern (list.partial ( actual) input')) (if (at = expected actual) {try.#Success [input' []]} (exception.except ..cannot_parse input)) @@ -124,7 +124,7 @@ (All (_ a) (-> (Parser a) (Parser a))) (function (_ input) (case input - (pattern (partial_list (/.tuple head) tail)) + (pattern (list.partial (/.tuple head) tail)) (do try.monad [output (..result parser head)] {try.#Success [tail output]}) -- cgit v1.2.3