diff options
author | Eduardo Julian | 2015-05-06 23:44:24 -0400 |
---|---|---|
committer | Eduardo Julian | 2015-05-06 23:44:24 -0400 |
commit | 7f39dd6a229b3b5a8e8d4108ecd1f5307b3cbf06 (patch) | |
tree | d9655cdb8ea45852791d0f599d294c7fee3a9b5f /src/lux/analyser/base.clj | |
parent | c0bd1c6af6d1691ddc2627710e352a1bbe3eb1c7 (diff) |
- Made several optimizations to the compiler.
- Also removed several unused definitions.
Diffstat (limited to 'src/lux/analyser/base.clj')
-rw-r--r-- | src/lux/analyser/base.clj | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lux/analyser/base.clj b/src/lux/analyser/base.clj index b16025349..a4c96c350 100644 --- a/src/lux/analyser/base.clj +++ b/src/lux/analyser/base.clj @@ -25,10 +25,3 @@ &/get-module-name (return ?module))] (return (&/ident->text (&/T module* ?name)))))) - -(defn resolved-ident* [ident] - (|let [[?module ?name] ident] - (|do [module* (if (= "" ?module) - &/get-module-name - (return ?module))] - (return (&/T module* ?name))))) |