aboutsummaryrefslogtreecommitdiff
path: root/src/interp/br-op1.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/br-op1.boot')
-rw-r--r--src/interp/br-op1.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/br-op1.boot b/src/interp/br-op1.boot
index 5fbe9418..72f65fa4 100644
--- a/src/interp/br-op1.boot
+++ b/src/interp/br-op1.boot
@@ -223,7 +223,7 @@ conform2StringList(form,opFn,argFn,exception) ==
rest getDualSignatureFromDB op
atypes :=
special => cosig
- getConstructorModemapFromDB(op).mmSource
+ getConstructorModemap(op).mmSource
sargl := [fn for x in args for atype in atypes for pred in cosig] where fn() ==
keyword :=
x is [":",y,t] =>
@@ -267,7 +267,7 @@ dbOuttran form ==
op := form
args := nil
cosig := rest getDualSignatureFromDB op
- atypes := getConstructorModemapFromDB(op).mmSource
+ atypes := getConstructorModemap(op).mmSource
argl := [fn for x in args for atype in atypes for pred in cosig] where fn() ==
pred => x
typ := sublisFormal(args,atype)
@@ -891,7 +891,7 @@ evalableConstructor2HtString domform ==
f is 'QUOTE => first args
[f,:[unquote x for x in args]]
arg
- fargtypes := getConstructorModemapFromDB(conname).mmSource
+ fargtypes := getConstructorModemap(conname).mmSource
--argtypes:= sublisFormal(arglist,fargtypes)
form2HtString([conname,:[fn for arg in arglist for x in coSig
for ftype in fargtypes]],nil,true) where