aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/platform/compiler/default/phase/extension/analysis.lux
blob: cc4736ac0a0bf21c1a8e08adb77676bd75c908ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(.module:
  [lux #*
   [data
    [collection
     ["." dictionary]]]]
  [///
   [analysis (#+ Bundle)]
   [//
    [evaluation (#+ Eval)]]]
  [/
   ["." common]
   ["." host]])

(def: #export (bundle eval)
  (-> Eval Bundle)
  (dictionary.merge host.bundle
                    (common.bundle eval)))