mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-14 00:07:36 +02:00
Extract data from pair
This commit is contained in:
parent
3bbd89ce2c
commit
dab0d9a570
1 changed files with 3 additions and 3 deletions
|
@ -1716,10 +1716,10 @@
|
||||||
)
|
)
|
||||||
|
|
||||||
;; Memoize pure functions, if instructed
|
;; Memoize pure functions, if instructed
|
||||||
(let ((module-globals (assoc 'module-globals options)))
|
(let ((module-globals-pair (assoc 'module-globals options)))
|
||||||
(when (and module-globals #t ;; TODO: (assoc 'memoize-pure-functions options)
|
(when (and module-globals-pair #t ;; TODO: (assoc 'memoize-pure-functions options)
|
||||||
)
|
)
|
||||||
(set! new-ast (opt:memoize-pure-fncs new-ast module-globals)))
|
(set! new-ast (opt:memoize-pure-fncs new-ast (cdr module-globals-pair))))
|
||||||
)
|
)
|
||||||
new-ast
|
new-ast
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue