diff options
author | Eduardo Julian | 2020-12-25 09:22:38 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-12-25 09:22:38 -0400 |
commit | 4ca397765805eda5ddee393901ed3a02001a960a (patch) | |
tree | 2ab184a1a4e244f3a69e86c8a7bb3ad49c22b4a3 /stdlib/source/lux/tool/compiler/meta/archive | |
parent | d29e091e98dabb8dfcf816899ada480ecbf7e357 (diff) |
Replaced kebab-case with snake_case for naming convention.
Diffstat (limited to 'stdlib/source/lux/tool/compiler/meta/archive')
-rw-r--r-- | stdlib/source/lux/tool/compiler/meta/archive/artifact.lux | 6 | ||||
-rw-r--r-- | stdlib/source/lux/tool/compiler/meta/archive/descriptor.lux | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/lux/tool/compiler/meta/archive/artifact.lux b/stdlib/source/lux/tool/compiler/meta/archive/artifact.lux index 319b23169..5592df470 100644 --- a/stdlib/source/lux/tool/compiler/meta/archive/artifact.lux +++ b/stdlib/source/lux/tool/compiler/meta/archive/artifact.lux @@ -79,7 +79,7 @@ (|> registry :representation (get@ #artifacts) - row.to-list + row.to_list (list.all (|>> (get@ #category) (case> (<tag> name) (#.Some name) _ #.None)))))] @@ -117,7 +117,7 @@ (row\map (get@ #category)) artifacts))) - (exception: #export (invalid-category {tag Nat}) + (exception: #export (invalid_category {tag Nat}) (exception.report ["Tag" (%.nat tag)])) @@ -133,7 +133,7 @@ 3 (\ ! map (|>> #Synthesizer) <b>.text) 4 (\ ! map (|>> #Generator) <b>.text) 5 (\ ! map (|>> #Directive) <b>.text) - _ (<>.fail (exception.construct ..invalid-category [tag])))))] + _ (<>.fail (exception.construct ..invalid_category [tag])))))] (|> (<b>.row/64 category) (\ <>.monad map (row\fold (function (_ artifact registry) (product.right diff --git a/stdlib/source/lux/tool/compiler/meta/archive/descriptor.lux b/stdlib/source/lux/tool/compiler/meta/archive/descriptor.lux index 2ae89cf4e..a31f6e793 100644 --- a/stdlib/source/lux/tool/compiler/meta/archive/descriptor.lux +++ b/stdlib/source/lux/tool/compiler/meta/archive/descriptor.lux @@ -21,7 +21,7 @@ {#name Module #file Path #hash Nat - #state Module-State + #state Module_State #references (Set Module) #registry Registry}) |