diff options
author | dos-reis <gdr@axiomatics.org> | 2008-07-15 15:42:14 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-07-15 15:42:14 +0000 |
commit | 5231d91460271f0e9e0e3231bae94ba0931067ba (patch) | |
tree | 06b7be33d02b64a7ff8c60db489e61aee4f280f8 /src/interp | |
parent | 24790cf3e1301cb46cbd9b03dbe064722e7b44e8 (diff) | |
download | open-axiom-5231d91460271f0e9e0e3231bae94ba0931067ba.tar.gz |
Fix SF/2015650
* interp/compiler.boot (coerceExtraHard): Forms with type Category
are categories.
Diffstat (limited to 'src/interp')
-rw-r--r-- | src/interp/compiler.boot | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/interp/compiler.boot b/src/interp/compiler.boot index 1d9686bc..24b80131 100644 --- a/src/interp/compiler.boot +++ b/src/interp/compiler.boot @@ -1347,7 +1347,10 @@ coerceExtraHard(T is [x,m',e],m) == belongsTo?(m',["UnionType"],e) and hasUniqueCaseView(x,m,e) => autoCoerceByModemap(T,m) -- Domain instantiations are first class objects - m = $Domain and isCategoryForm(m',e) => [x,m',e] + m = $Domain => + m' = $Category => nil + isCategoryForm(m',e) => [x,m',e] + nil nil ++ returns true if mode `m' is known to belong to category `cat' in |