aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation
diff options
context:
space:
mode:
authorEduardo Julian2022-06-12 13:33:48 -0400
committerEduardo Julian2022-06-12 13:33:48 -0400
commit8c3a1afab9efeb86e2f53d743551fc689fbad257 (patch)
tree396b2fd29bac407544d2136a0d9e6e3b8b2c30af /stdlib/source/documentation
parent9c21fd1f33eb52fb971d493ad21a67036d68b841 (diff)
De-sigil-ification: suffix : [Part 4]
Diffstat (limited to 'stdlib/source/documentation')
-rw-r--r--stdlib/source/documentation/lux.lux10
-rw-r--r--stdlib/source/documentation/lux/extension.lux24
2 files changed, 12 insertions, 22 deletions
diff --git a/stdlib/source/documentation/lux.lux b/stdlib/source/documentation/lux.lux
index 25389845a..f43538c06 100644
--- a/stdlib/source/documentation/lux.lux
+++ b/stdlib/source/documentation/lux.lux
@@ -473,15 +473,6 @@
(< reference subject))
))])
-(documentation: /.implementation:
- "Interface implementation."
- [(implementation: .public order
- (Order Int)
- (def: equivalence
- equivalence)
- (def: (< test subject)
- (< test subject)))])
-
(documentation: /.Variant
(format "Syntax for defining labelled/tagged sum/union types."
\n "WARNING: Only use it within the type: macro.")
@@ -965,7 +956,6 @@
..or
..panic!
..implementation
- ..implementation:
..Variant
..Record
..type:
diff --git a/stdlib/source/documentation/lux/extension.lux b/stdlib/source/documentation/lux/extension.lux
index d76d278d5..0d1a484d6 100644
--- a/stdlib/source/documentation/lux/extension.lux
+++ b/stdlib/source/documentation/lux/extension.lux
@@ -25,28 +25,28 @@
[\\library
["[0]" /]])
-(documentation: /.analysis:
+(documentation: /.analysis
"Mechanism for defining extensions to Lux's analysis/type-checking infrastructure."
- [(analysis: ("my analysis" self phase archive [pass_through <code>.any])
+ [(analysis ("my analysis" self phase archive [pass_through <code>.any])
(phase archive pass_through))])
-(documentation: /.synthesis:
+(documentation: /.synthesis
"Mechanism for defining extensions to Lux's synthesis/optimization infrastructure."
- [(synthesis: ("my synthesis" self phase archive [pass_through <analysis>.any])
+ [(synthesis ("my synthesis" self phase archive [pass_through <analysis>.any])
(phase archive pass_through))])
-(documentation: /.generation:
+(documentation: /.generation
""
- [(generation: ("my generation" self phase archive [pass_through <synthesis>.any])
+ [(generation ("my generation" self phase archive [pass_through <synthesis>.any])
(for @.jvm
(at phase.monad each (|>> {jvm.#Embedded}
sequence.sequence)
(phase archive pass_through))
(phase archive pass_through)))])
-(documentation: /.directive:
+(documentation: /.directive
""
- [(directive: ("my directive" self phase archive [parameters (<>.some <code>.any)])
+ [(directive ("my directive" self phase archive [parameters (<>.some <code>.any)])
(do phase.monad
[.let [_ (debug.log! (format "Successfully installed directive " (%.text self) "!"))]]
(in directive.no_requirements)))])
@@ -55,8 +55,8 @@
(.List $.Module)
($.module /._
""
- [..analysis:
- ..synthesis:
- ..generation:
- ..directive:]
+ [..analysis
+ ..synthesis
+ ..generation
+ ..directive]
[]))