aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/module/descriptor/common.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/module/descriptor/common.lux')
-rw-r--r--new-luxc/source/luxc/module/descriptor/common.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/new-luxc/source/luxc/module/descriptor/common.lux b/new-luxc/source/luxc/module/descriptor/common.lux
index aac438a6f..b123fe852 100644
--- a/new-luxc/source/luxc/module/descriptor/common.lux
+++ b/new-luxc/source/luxc/module/descriptor/common.lux
@@ -1,4 +1,4 @@
-(;module:
+(.module:
lux
(lux (data [text]
(text format
@@ -18,20 +18,20 @@
(do-template [<name> <code>]
[(def: #export <name> Signal <code>)]
- [ident-separator ";"]
+ [ident-separator "."]
)
(def: #export (encode-list encode-elem types)
(All [a] (-> (-> a Text) (List a) Text))
(format (|> (L/map encode-elem types)
- (text;join-with cons-signal))
+ (text.join-with cons-signal))
nil-signal))
(def: #export (decode-list decode-elem)
- (All [a] (-> (l;Lexer a) (l;Lexer (List a))))
- (l;alt (<| (l;after (l;text nil-signal))
+ (All [a] (-> (l.Lexer a) (l.Lexer (List a))))
+ (l.alt (<| (l.after (l.text nil-signal))
(l/wrap []))
- (<| (l;seq decode-elem)
- (l;after (l;text cons-signal))
+ (<| (l.seq decode-elem)
+ (l.after (l.text cons-signal))
(decode-list decode-elem))))