diff options
author | Eduardo Julian | 2019-05-22 00:12:24 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-05-22 00:12:24 -0400 |
commit | 0bc505930accb00f74724f384ee42c9a4dd32beb (patch) | |
tree | 7c7358b2090fe4023af854bc4cdd8987deaf382d /stdlib/source/program | |
parent | 7406fbf75e7f81b466c02ed07d65e62c86e3230a (diff) |
Removed the useless #lux.type? annotation tag.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/program/scriptum.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/source/program/scriptum.lux b/stdlib/source/program/scriptum.lux index e37d69d1b..1522e8f66 100644 --- a/stdlib/source/program/scriptum.lux +++ b/stdlib/source/program/scriptum.lux @@ -274,7 +274,7 @@ (def: (add-definition [name [def-type def-annotations def-value]] organization) (-> [Text Definition] Organization Organization) - (cond (macro.type? def-annotations) + (cond (type@= .Type def-type) (update@ #types (: (Mutation (List Value)) (|>> (#.Cons [name def-annotations (:coerce Type def-value)]))) |