mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +02:00
Issue #537 - Add useful comments
This commit is contained in:
parent
1ce4979658
commit
06219634e9
1 changed files with 9 additions and 2 deletions
|
@ -89,12 +89,19 @@
|
||||||
((analyze exp *global-environment* rename-env '()) *global-environment*)
|
((analyze exp *global-environment* rename-env '()) *global-environment*)
|
||||||
((analyze exp (car env) rename-env '()) (car env))))
|
((analyze exp (car env) rename-env '()) (car env))))
|
||||||
|
|
||||||
|
;; Called from the C runtime to support apply
|
||||||
(define (eval-from-c exp . _env)
|
(define (eval-from-c exp . _env)
|
||||||
(let ((env (if (null? _env) *global-environment* (car _env))))
|
(let ((env (if (null? _env) *global-environment* (car _env))))
|
||||||
(eval (wrapc exp) env)))
|
(eval (wrapc exp) env)))
|
||||||
|
|
||||||
;; Expressions received from C code are already evaluated, but sometimes too much so.
|
;; Helper function for eval-from-c
|
||||||
;; Try to wrap
|
;;
|
||||||
|
;; Expressions received from C code are already evaluated,
|
||||||
|
;; however any quoted expressions will have the quotes
|
||||||
|
;; stripped off. This is a problem for expressions that
|
||||||
|
;; aren't self evaluating - like (1 2) - so we re-quote
|
||||||
|
;; the expressions here so a subsequent eval will work.
|
||||||
|
;;
|
||||||
(define (wrapc exp)
|
(define (wrapc exp)
|
||||||
(cond
|
(cond
|
||||||
((application? exp)
|
((application? exp)
|
||||||
|
|
Loading…
Add table
Reference in a new issue