X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Ftypes%2FTFun.java;h=6fc9b42b22bb165481e7cb0da6f8c1e0122c3ce2;hp=e26c5b07ac923922a8c4e4270ede948b3b1f3cbb;hb=a8758de5bc19e5adb3f618d3038743a164f09912;hpb=12d9af17384d960b75d58c3935d2b7b46d93e87b diff --git a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/types/TFun.java b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/types/TFun.java index e26c5b07a..6fc9b42b2 100644 --- a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/types/TFun.java +++ b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/types/TFun.java @@ -209,6 +209,22 @@ public class TFun extends Type { return hash; } + @Override + public int skeletonHashCode(int hash) { + hash = HashCodeUtils.updateWithPreprocessedValue(hash, FUN_HASH); + hash = domain.skeletonHashCode(hash); + hash = range.skeletonHashCode(hash); + return hash; + } + + @Override + public int skeletonHashCode(int hash, TVar[] boundVars) { + hash = HashCodeUtils.updateWithPreprocessedValue(hash, FUN_HASH); + hash = domain.skeletonHashCode(hash, boundVars); + hash = range.skeletonHashCode(hash, boundVars); + return hash; + } + public Type getCanonicalDomain() { if(domain instanceof TMetaVar) domain = domain.canonical(); @@ -243,4 +259,9 @@ public class TFun extends Type { public Kind getKind(Environment context) { return Kinds.STAR; } + + @Override + public Type[] skeletonCanonicalChildren() { + return new Type[] {Skeletons.canonicalSkeleton(domain), Skeletons.canonicalSkeleton(range)}; + } }