svn: r1514
This commit is contained in:
parent
4c1d6a1972
commit
f0b24a9f27
|
@ -1520,8 +1520,14 @@
|
|||
(and (eq? 'boolean l) (eq? 'boolean r)))
|
||||
'boolean)
|
||||
((and (reference-type? l) (reference-type? r))
|
||||
(let ((right-to-left (assignment-conversion l r type-recs))
|
||||
(let* ((dl? (dynamic-val? l))
|
||||
(dr? (dynamic-val? r))
|
||||
(dlt (when dl? (dynamic-val-type l)))
|
||||
(drt (when dr? (dynamic-val-type r)))
|
||||
(right-to-left (assignment-conversion l r type-recs))
|
||||
(left-to-right (assignment-conversion r l type-recs)))
|
||||
(when (and dl? (not dlt)) (set-dynamic-val-type! l #f))
|
||||
(when (and dr? (not drt)) (set-dynamic-val-type! r #f))
|
||||
(cond
|
||||
((or right-to-left left-to-right) 'boolean)
|
||||
(else (bin-op-equality-error 'both op l r src)))))
|
||||
|
|
|
@ -551,7 +551,7 @@
|
|||
(newline port))
|
||||
|
||||
(define/public (create-executable fn parent . args)
|
||||
(printf "create-exe called~n")
|
||||
;(printf "create-exe called~n")
|
||||
(message-box "Unsupported"
|
||||
"Sorry - executables are not supported for Java at this time"
|
||||
parent))
|
||||
|
|
Loading…
Reference in New Issue
Block a user