diff options
author | dos-reis <gdr@axiomatics.org> | 2013-06-14 00:57:08 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2013-06-14 00:57:08 +0000 |
commit | ea018ab3ef159cb91afeae1690bb1890653efea6 (patch) | |
tree | 9a816e51c54b9d45ea67696da01e13bc07933145 /src | |
parent | 76f095d6a13dbb43472e4330299a978eff5993be (diff) | |
download | open-axiom-ea018ab3ef159cb91afeae1690bb1890653efea6.tar.gz |
* interp/define.boot (getvalue): Rename from GetValue.
Take environment as second parameter. Adjust callers.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/interp/define.boot | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3970a249..6718e907 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,10 @@ 2013-06-13 Gabriel Dos Reis <gdr@integrable-solutions.net> + * interp/define.boot (getvalue): Rename from GetValue. + Take environment as second parameter. Adjust callers. + +2013-06-13 Gabriel Dos Reis <gdr@integrable-solutions.net> + * interp/nruncomp.boot (listOfBoundVars): Take environment as second parameter. Adjust callers. (optDeltaEntry): Likewise. diff --git a/src/interp/define.boot b/src/interp/define.boot index dee8a8be..10403767 100644 --- a/src/interp/define.boot +++ b/src/interp/define.boot @@ -251,9 +251,9 @@ mkJoin(cat,mode) == ['Join,cat,mode] -GetValue name == - u:= get(name,"value",$e) => u - u:= comp(name,$EmptyMode,$e) => u --name may be a form +getvalue(name,e) == + u := get(name,"value",e) => u + u := comp(name,$EmptyMode,e) => u --name may be a form systemError [name,'" is not bound in the current environment"] actOnInfo(u,$e) == @@ -272,7 +272,7 @@ actOnInfo(u,$e) == $e := actOnInfo(v,$e) $e u is ["ATTRIBUTE",name,att] => - [vval,vmode,.]:= GetValue name + [vval,vmode,.] := getvalue(name,$e) compilerMessage('"augmenting %1: %2p", [name,["ATTRIBUTE",att]]) key := -- FIXME: there should be a better to tell whether name @@ -292,7 +292,7 @@ actOnInfo(u,$e) == name = "$" => [kind,name,-1] [kind,name,substitute('$,name,modemap)] $e:= addModemap(operator,name,modemap,true,implem,$e) - [vval,vmode,.]:= GetValue name + [vval,vmode,.] := getvalue(name,$e) compilerMessage('"augmenting %1: %2p", [name,["SIGNATURE",operator,modemap,:q]]) key := @@ -303,7 +303,7 @@ actOnInfo(u,$e) == cat:= ["CATEGORY",key,["SIGNATURE",operator,modemap,:q]] $e:= put(name,"value",[vval,mkJoin(cat,vmode),nil],$e) u is ["has",name,cat] => - [vval,vmode,.]:= GetValue name + [vval,vmode,.] := getvalue(name,$e) cat=vmode => $e --stating the already known u:= compMakeCategoryObject(cat,$e) => --we are adding information about a category |