mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-14 08:17:35 +02:00
Added TODO
Reject function that contains globals since the value of those globals could change, invaliding the cache.
This commit is contained in:
parent
d6e2717407
commit
4ac9b64bc2
1 changed files with 3 additions and 1 deletions
|
@ -38,7 +38,9 @@
|
||||||
)
|
)
|
||||||
((quote? exp) exp)
|
((quote? exp) exp)
|
||||||
((const? exp) #t)
|
((const? exp) #t)
|
||||||
((ref? exp) exp)
|
((ref? exp)
|
||||||
|
TODO: if exp is a global, return false
|
||||||
|
exp)
|
||||||
((define? exp)
|
((define? exp)
|
||||||
(return #f))
|
(return #f))
|
||||||
((set!? exp)
|
((set!? exp)
|
||||||
|
|
Loading…
Add table
Reference in a new issue