From e65917e3fe1b5794a2643058f15c7aeb5ca1a0fa Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sat, 17 Jun 2017 21:47:56 -0400 Subject: - Small refactorings and name-changes. --- stdlib/test/test/lux/macro/syntax.lux | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stdlib/test') diff --git a/stdlib/test/test/lux/macro/syntax.lux b/stdlib/test/test/lux/macro/syntax.lux index 0badc67f3..9982dc01b 100644 --- a/stdlib/test/test/lux/macro/syntax.lux +++ b/stdlib/test/test/lux/macro/syntax.lux @@ -68,7 +68,7 @@ [(assert (and (is? (list ( ))) (found? (s;this? ( )) (list ( ))) - (enforced? (s;this! ( )) (list ( )))))] + (enforced? (s;this ( )) (list ( )))))] ["Can parse Bool syntax." true code;bool bool;Eq s;bool] ["Can parse Nat syntax." +123 code;nat number;Eq s;nat] @@ -247,8 +247,8 @@ (assert "Can parse while taking separators into account." (and (match (list 123 456 789) (s;run (list (code;int 123) (code;text "YOLO") (code;int 456) (code;text "YOLO") (code;int 789)) - (s;sep-by (s;this! (' "YOLO")) s;int))) + (s;sep-by (s;this (' "YOLO")) s;int))) (match (list 123 456) (s;run (list (code;int 123) (code;text "YOLO") (code;int 456) (code;int 789)) - (s;sep-by (s;this! (' "YOLO")) s;int))))) + (s;sep-by (s;this (' "YOLO")) s;int))))) )) -- cgit v1.2.3