diff options
Diffstat (limited to 'src/interp/profile.boot')
-rw-r--r-- | src/interp/profile.boot | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interp/profile.boot b/src/interp/profile.boot index 2998c438..7c1a8a9b 100644 --- a/src/interp/profile.boot +++ b/src/interp/profile.boot @@ -73,19 +73,19 @@ profileRecord(label,name,info) == --name: info is var: type or op: sig $profileAlist profileDisplay() == - profileDisplayOp('constructor,LASSOC('constructor,$profileAlist) ) + profileDisplayOp('constructor,symbolLassoc('constructor,$profileAlist) ) for [op,:alist1] in $profileAlist | op ~= 'constructor repeat profileDisplayOp(op,alist1) profileDisplayOp(op,alist1) == sayBrightly op - if LASSOC('arguments,alist1) then + if symbolLassoc('arguments,alist1) then sayBrightly '" arguments" - for [x,:t] in MSORT LASSOC('arguments,alist1) repeat + for [x,:t] in MSORT symbolLAssoc('arguments,alist1) repeat sayBrightly concat('" ",x,": ",prefix2String t) - if LASSOC('locals,alist1) then + if symbolLassoc('locals,alist1) then sayBrightly '" locals" - for [x,:t] in MSORT LASSOC('locals,alist1) repeat + for [x,:t] in MSORT symbolLassoc('locals,alist1) repeat sayBrightly concat('" ",x,": ",prefix2String t) for [con,:alist2] in alist1 | not (con in '(locals arguments)) repeat sayBrightly concat('" ",prefix2String con) |