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.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/library/lux/ffi.lua.lux b/stdlib/source/library/lux/ffi.lua.lux
index c004b3145..fc6266d78 100644
--- a/stdlib/source/library/lux/ffi.lua.lux
+++ b/stdlib/source/library/lux/ffi.lua.lux
@@ -23,12 +23,12 @@
["." code]
["." template]]]])
-(abstract: #export (Object brand) Any)
+(abstract: .public (Object brand) Any)
(template [<name>]
[(with_expansions [<brand> (template.identifier [<name> "'"])]
(abstract: <brand> Any)
- (type: #export <name>
+ (type: .public <name>
(..Object <brand>)))]
[Nil]
@@ -37,7 +37,7 @@
)
(template [<name> <type>]
- [(type: #export <name>
+ [(type: .public <name>
<type>)]
[Boolean Bit]
@@ -212,7 +212,7 @@
(:as ..Function (~ source))
(~+ (list\map (with_nil g!temp) g!inputs)))))))))))
-(syntax: #export (import: {import ..import})
+(syntax: .public (import: {import ..import})
(with_gensyms [g!temp]
(case import
(#Class [class format members])
@@ -302,7 +302,7 @@
("lua constant" (~ (code.text (text.replace_all "/" "." name))))))))))))
)))
-(template: #export (closure <inputs> <output>)
+(template: .public (closure <inputs> <output>)
(.:as ..Function
(`` ("lua function"
(~~ (template.amount <inputs>))