From 79b0a2a555d17bb2fd3f391be83bab4809288075 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Tue, 20 Jun 2023 11:55:08 -0400 Subject: 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> --- source/slang/slang-parser.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'source/slang/slang-parser.cpp') 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: -- cgit v1.2.3