summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2023-06-20 11:55:08 -0400
committerGitHub <noreply@github.com>2023-06-20 11:55:08 -0400
commit79b0a2a555d17bb2fd3f391be83bab4809288075 (patch)
tree34b7fb2dc62a275b3a124e20eaae04d5d7985b28 /source
parentf161686e8e260a4b0e6e0a773cf1cf16069f41bf (diff)
Fix for generic with scope issue (#2925)
* Small fixes and improvements around reflection tool. * Make PrettyWriter printing a class. * Sundary improvements around StringBlob. * Fix for generic scope issue. * Fix expected output. * Add scope-generic test. --------- Co-authored-by: Theresa Foley <10618364+tangent-vector@users.noreply.github.com>
Diffstat (limited to 'source')
-rw-r--r--source/slang/slang-parser.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/slang/slang-parser.cpp b/source/slang/slang-parser.cpp
index 410395669..5022a9fdd 100644
--- a/source/slang/slang-parser.cpp
+++ b/source/slang/slang-parser.cpp
@@ -2070,6 +2070,7 @@ namespace Slang
// disambiguate based on FOLLOW set
switch (peekTokenType(&newParser))
{
+ case TokenType::Scope:
case TokenType::Dot:
case TokenType::LParent:
case TokenType::RParent: