aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/ffi.jvm.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-01 01:49:59 -0400
committerEduardo Julian2021-09-01 01:49:59 -0400
commite76add6e6f904677f5c09bb2a66dce283f1b848a (patch)
treee8f2b8bccce66b1bcdd39b7974beb4f90646fdf8 /stdlib/source/documentation/lux/ffi.jvm.lux
parent4051a1cbe0999ee22bc395b059ea1556bcc002a0 (diff)
De-taggification | part 1
Diffstat (limited to 'stdlib/source/documentation/lux/ffi.jvm.lux')
-rw-r--r--stdlib/source/documentation/lux/ffi.jvm.lux32
1 files changed, 16 insertions, 16 deletions
diff --git a/stdlib/source/documentation/lux/ffi.jvm.lux b/stdlib/source/documentation/lux/ffi.jvm.lux
index c6d2a97ae..029999d03 100644
--- a/stdlib/source/documentation/lux/ffi.jvm.lux
+++ b/stdlib/source/documentation/lux/ffi.jvm.lux
@@ -83,22 +83,22 @@
(documentation: /.class:
"Allows defining JVM classes in Lux code."
- [(class: #final (TestClass A) [Runnable]
+ [(class: "final" (TestClass A) [Runnable]
... Fields
- (#private foo boolean)
- (#private bar A)
- (#private baz java/lang/Object)
+ ("private" foo boolean)
+ ("private" bar A)
+ ("private" baz java/lang/Object)
... Methods
- (#public [] (new [value A]) []
- (exec
- (:= ::foo #1)
- (:= ::bar value)
- (:= ::baz "")
- []))
- (#public (virtual) java/lang/Object
- "")
- (#public "static" (static) java/lang/Object
- "")
+ ("public" [] (new [value A]) []
+ (exec
+ (:= ::foo #1)
+ (:= ::bar value)
+ (:= ::baz "")
+ []))
+ ("public" (virtual) java/lang/Object
+ "")
+ ("public" "static" (static) java/lang/Object
+ "")
(Runnable [] (run) void
[])
)
@@ -115,7 +115,7 @@
(documentation: /.interface:
"Allows defining JVM interfaces."
[(interface: TestInterface
- ([] foo [boolean String] void #throws [Exception]))])
+ ([] foo [boolean String] void "throws" [Exception]))])
(documentation: /.object
"Allows defining anonymous classes."
@@ -194,7 +194,7 @@
["#::."
(new [[byte]])
("static" valueOf [char] java/lang/String)
- ("static" valueOf #as int_valueOf [int] java/lang/String)])
+ ("static" valueOf "as" int_valueOf [int] java/lang/String)])
(import: (java/util/List e)
["#::."