diff options
author | Eduardo Julian | 2019-04-28 02:09:34 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-04-28 02:09:34 -0400 |
commit | 0c20f4a8362d42572edecb6ef9844b75c4c859f8 (patch) | |
tree | d40ce3ab8107647d9e929302d5f8a2c52c94b6fc /stdlib/source/spec/compositor/generation | |
parent | 41b83b7a2d3be8f454f780dca497c4eeed900bbf (diff) |
Turned all "lux int ???" extensions to "lux i64 ???".
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/spec/compositor/generation/common.lux | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/source/spec/compositor/generation/common.lux b/stdlib/source/spec/compositor/generation/common.lux index 8ed524efe..c837c30a3 100644 --- a/stdlib/source/spec/compositor/generation/common.lux +++ b/stdlib/source/spec/compositor/generation/common.lux @@ -86,11 +86,11 @@ false) (let [subject <subject-expr>])))] - ["lux i64 to-f64" Frac int-to-frac f/= subject] - ["lux i64 char" Text (|>> (:coerce Nat) text.from-code) text@= (|> subject - (:coerce Nat) - (n/% (i64.left-shift 8 1)) - (:coerce Int))] + ["lux i64 f64" Frac int-to-frac f/= subject] + ["lux i64 char" Text (|>> (:coerce Nat) text.from-code) text@= (|> subject + (:coerce Nat) + (n/% (i64.left-shift 8 1)) + (:coerce Int))] )) (~~ (template [<extension> <reference> <outputT> <comp>] [(_.test <extension> @@ -270,7 +270,7 @@ (run (..sanitize "lux text char")) (case> (^multi (#error.Success valueV) [(:coerce (Maybe Int) valueV) (#.Some valueV)]) - (text.contains? ("lux int char" valueV) + (text.contains? ("lux i64 char" valueV) sample-lower) _ |