File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ Returns (PREDS FOUNDP)"
104
104
(simp-loop nil preds)))
105
105
106
106
(defun reduce-context (env preds subs)
107
- (let ((env (apply-substitution subs env))
107
+ (let ((env (env- apply-substitution subs env))
108
108
(preds (apply-substitution subs preds)))
109
109
(simplify-context
110
110
(lambda (preds pred)
Original file line number Diff line number Diff line change 27
27
(# :parser # :coalton-impl/parser)
28
28
(# :map # :coalton-impl/algorithm/hamt))
29
29
(:export
30
+ # :env-apply-substitution
30
31
# :*update-hook* ; VARIABLE
31
32
# :explicit-repr ; TYPE
32
33
# :type-entry ; STRUCT
786
787
; ;; Methods
787
788
; ;;
788
789
789
- (defmethod apply-substitution (subst-list ( env environment) )
790
+ (defun env- apply-substitution (subst-list env)
790
791
(declare (type substitution-list subst-list)
791
792
(type environment env)
792
793
(values environment &optional ))
796
797
(environment-value-environment env)
797
798
subst-list)))
798
799
799
- (defmethod type-variables ((env environment))
800
- (value-type-variables (environment-value-environment env)))
801
-
802
800
; ;;
803
801
; ;; Functions
804
802
; ;;
You can’t perform that action at this time.
0 commit comments