diff options
Diffstat (limited to 'source/slang/syntax.h')
| -rw-r--r-- | source/slang/syntax.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source/slang/syntax.h b/source/slang/syntax.h index cf75b5624..bda43b336 100644 --- a/source/slang/syntax.h +++ b/source/slang/syntax.h @@ -1155,7 +1155,12 @@ namespace Slang RefPtr<Substitutions> createDefaultSubstitutions( Session* session, Decl* decl); - + + RefPtr<ThisTypeSubstitution> getNewThisTypeSubst(DeclRefBase & declRef); + RefPtr<ThisTypeSubstitution> getThisTypeSubst(DeclRefBase & declRef, bool insertSubstEntry); + void removeSubstitution(DeclRefBase & declRef, RefPtr<Substitutions> subst); + bool hasGenericSubstitutions(RefPtr<Substitutions> subst); + } // namespace Slang #endif
\ No newline at end of file |
