From 220c804f9136c73058802575ee49f3f769d5599f Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 17 Mar 2022 04:29:59 -0400 Subject: De-sigil-ification: ! --- lux-jvm/source/luxc/lang/directive/jvm.lux | 32 +++++++++++++++--------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'lux-jvm/source/luxc/lang/directive/jvm.lux') diff --git a/lux-jvm/source/luxc/lang/directive/jvm.lux b/lux-jvm/source/luxc/lang/directive/jvm.lux index ff0e5cecf..5f1b09ec9 100644 --- a/lux-jvm/source/luxc/lang/directive/jvm.lux +++ b/lux-jvm/source/luxc/lang/directive/jvm.lux @@ -649,26 +649,26 @@ (def: inheritance (Parser Inheritance) ($_ <>.or - (.text! "final") - (.text! "abstract") - (.text! "default") + (.this_text "final") + (.this_text "abstract") + (.this_text "default") )) (def: privacy (Parser Privacy) ($_ <>.or - (.text! "public") - (.text! "private") - (.text! "protected") - (.text! "default") + (.this_text "public") + (.this_text "private") + (.this_text "protected") + (.this_text "default") )) (def: state (Parser State) ($_ <>.or - (.text! "volatile") - (.text! "final") - (.text! "default") + (.this_text "volatile") + (.this_text "final") + (.this_text "default") )) (type: Field @@ -678,7 +678,7 @@ (Parser Field) (.form (do <>.monad - [_ (.text! "variable") + [_ (.this_text "variable") name .text privacy ..privacy state ..state @@ -763,7 +763,7 @@ (<>.and ..value .any)))] (<| .form - (<>.after (.text! "init")) + (<>.after (.this_text "init")) ($_ <>.and ..privacy .bit @@ -779,7 +779,7 @@ (def: override (Parser (Override Code)) (<| .form - (<>.after (.text! "override")) + (<>.after (.this_text "override")) ($_ <>.and ..class_declaration .text @@ -796,7 +796,7 @@ (def: virtual (Parser (Virtual Code)) (<| .form - (<>.after (.text! "virtual")) + (<>.after (.this_text "virtual")) ($_ <>.and .text ..privacy @@ -814,7 +814,7 @@ (def: static (Parser (Static Code)) (<| .form - (<>.after (.text! "static")) + (<>.after (.this_text "static")) ($_ <>.and .text ..privacy @@ -830,7 +830,7 @@ (def: abstract (Parser Abstract) (<| .form - (<>.after (.text! "abstract")) + (<>.after (.this_text "abstract")) ($_ <>.and .text ..privacy -- cgit v1.2.3