diff options
author | Eduardo Julian | 2022-04-08 21:32:38 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-04-08 21:32:38 -0400 |
commit | 120ebb44dbb1a20fc150e5e58099f90be2e61d49 (patch) | |
tree | 32bcc24d1a48989faf4207bbce423c483b9ce1ba /stdlib/source/library/lux/tool/compiler | |
parent | 0d909187d5b9effcd08f533d50af7d29c0d6bfd8 (diff) |
Better names for random text/character generators.
Diffstat (limited to 'stdlib/source/library/lux/tool/compiler')
-rw-r--r-- | stdlib/source/library/lux/tool/compiler/language/lux/phase/generation/ruby/runtime.lux | 2 | ||||
-rw-r--r-- | stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux | 40 |
2 files changed, 21 insertions, 21 deletions
diff --git a/stdlib/source/library/lux/tool/compiler/language/lux/phase/generation/ruby/runtime.lux b/stdlib/source/library/lux/tool/compiler/language/lux/phase/generation/ruby/runtime.lux index 576f8f24c..2d7a0d116 100644 --- a/stdlib/source/library/lux/tool/compiler/language/lux/phase/generation/ruby/runtime.lux +++ b/stdlib/source/library/lux/tool/compiler/language/lux/phase/generation/ruby/runtime.lux @@ -1,6 +1,6 @@ (.using [library - [lux {"-" i64} + [lux {"-" i64 left right} ["[0]" meta] [abstract ["[0]" monad {"+" do}]] diff --git a/stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux b/stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux index 84b644f47..78269e9a6 100644 --- a/stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux +++ b/stdlib/source/library/lux/tool/compiler/meta/cache/dependency/artifact.lux @@ -1,7 +1,7 @@ ... https://en.wikipedia.org/wiki/Tree_shaking (.using [library - [lux "*" + [lux {"-" all} [abstract [hash {"+" Hash}] ["[0]" monad {"+" do}]] @@ -47,18 +47,18 @@ (^.template [<tag>] [{<tag> left right} - (all list#composite - (again left) - (again right))]) + (.all list#composite + (again left) + (again right))]) ([synthesis.#Alt] [synthesis.#Seq]) {synthesis.#Bit_Fork when then else} (case else {.#Some else} - (all list#composite - (again then) - (again else)) + (.all list#composite + (again then) + (again else)) {.#None} (again then)) @@ -106,28 +106,28 @@ {synthesis.#Branch value} (case value {synthesis.#Exec this that} - (all list#composite - (references this) - (references that)) + (.all list#composite + (references this) + (references that)) {synthesis.#Let input _ body} - (all list#composite - (references input) - (references body)) + (.all list#composite + (references input) + (references body)) {synthesis.#If test then else} - (all list#composite - (references test) - (references then) - (references else)) + (.all list#composite + (references test) + (references then) + (references else)) {synthesis.#Get _ record} (references record) {synthesis.#Case input path} - (all list#composite - (references input) - (path_references references path))) + (.all list#composite + (references input) + (path_references references path))) {synthesis.#Loop value} (case value |