summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-syntax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-syntax.cpp')
-rw-r--r--source/slang/slang-syntax.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/source/slang/slang-syntax.cpp b/source/slang/slang-syntax.cpp
index 6076a41ca..470f5f983 100644
--- a/source/slang/slang-syntax.cpp
+++ b/source/slang/slang-syntax.cpp
@@ -1232,6 +1232,25 @@ Index getFilterCountImpl(const ReflectClassInfo& clsInfo, MemberFilterStyle filt
}
break;
}
+
+ // Hard code implementation of T.Differential.Differential == T.Differential rule.
+ if (auto builtinReq = substDeclRef.getDecl()->findModifier<BuiltinRequirementModifier>())
+ {
+ if (builtinReq->kind == BuiltinRequirementKind::DifferentialType)
+ {
+ // Is the concrete type a Differential associated type?
+ if (auto innerDeclRefType = as<DeclRefType>(thisSubst->witness->sub))
+ {
+ if (auto innerBuiltinReq = innerDeclRefType->declRef.decl->findModifier<BuiltinRequirementModifier>())
+ {
+ if (innerBuiltinReq->kind == BuiltinRequirementKind::DifferentialType)
+ {
+ return innerDeclRefType;
+ }
+ }
+ }
+ }
+ }
}
}
}