aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/tool/compiler/language/lux/phase/extension/analysis.lux
blob: 93e1c6d1f88f7412423124133c7edc7a5757790e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(.module:
  [library
   [lux #*
    [data
     [collection
      ["." dictionary]]]]]
  [////
   [analysis (#+ Bundle)
    [evaluation (#+ Eval)]]]
  ["." / #_
   ["#." lux]])

(def: #export (bundle eval host_specific)
  (-> Eval Bundle Bundle)
  (dictionary.merge host_specific
                    (/lux.bundle eval)))