aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/ffi.lua.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/ffi.lua.lux24
1 files changed, 12 insertions, 12 deletions
diff --git a/stdlib/source/library/lux/ffi.lua.lux b/stdlib/source/library/lux/ffi.lua.lux
index 8a8abbe14..4144c573f 100644
--- a/stdlib/source/library/lux/ffi.lua.lux
+++ b/stdlib/source/library/lux/ffi.lua.lux
@@ -2,26 +2,26 @@
[library
[lux "*"
["@" target]
- ["." meta]
+ ["[0]" meta]
[abstract
[monad {"+" [do]}]]
[control
- ["." io]
- ["." maybe]
- ["<>" parser ("#\." monad)
- ["<.>" code {"+" [Parser]}]]]
+ ["[0]" io]
+ ["[0]" maybe]
+ ["<>" parser ("[1]\[0]" monad)
+ ["<[0]>" code {"+" [Parser]}]]]
[data
- ["." product]
- ["." text
+ ["[0]" product]
+ ["[0]" text
["%" format]]
[collection
- ["." list ("#\." functor mix)]]]
+ ["[0]" list ("[1]\[0]" functor mix)]]]
[type
abstract]
[macro {"+" [with_identifiers]}
[syntax {"+" [syntax:]}]
- ["." code]
- ["." template]]]])
+ ["[0]" code]
+ ["[0]" template]]]])
(abstract: .public (Object brand)
{}
@@ -228,8 +228,8 @@
(let [qualify (: (-> Text Code)
(function (_ member_name)
(|> format
- (text.replaced "#" class)
- (text.replaced "." member_name)
+ (text.replaced "[1]" class)
+ (text.replaced "[0]" member_name)
code.local_identifier)))
g!type (code.local_identifier class)
real_class (text.replaced "/" "." class)