diff options
author | Eduardo Julian | 2017-01-06 19:33:02 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-01-06 19:33:02 -0400 |
commit | 39a29a47313a50805dc323a3ccd949659188c8e2 (patch) | |
tree | 4fd7ddd465d94e6ce3180cf06c5ccc2356a3e27b /stdlib | |
parent | 4dc64964009674d947f97639bdfae4faa544bc6c (diff) |
- Now returning full module information, instead of just module names.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/compiler.lux | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stdlib/source/lux/compiler.lux b/stdlib/source/lux/compiler.lux index 2f3fdbe3c..374556972 100644 --- a/stdlib/source/lux/compiler.lux +++ b/stdlib/source/lux/compiler.lux @@ -506,11 +506,10 @@ (def: #export modules {#;doc "All the available modules (including the current one)."} - (Lux (List Text)) + (Lux (List [Text Module])) (lambda [state] (|> state (get@ #;modules) - (List/map product;left) [state] #;Right))) |