Skip to content

Commit c6e5551

Browse files
authored
Merge branch 'master' into fix-while-in-gen
2 parents 8286737 + dc01803 commit c6e5551

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

source/slang/parser.cpp

+8-1
Original file line numberDiff line numberDiff line change
@@ -2992,7 +2992,14 @@ namespace Slang
29922992
{
29932993
// Add any modifiers we parsed before the declaration to the list
29942994
// of modifiers on the declaration itself.
2995-
AddModifiers(decl.Ptr(), modifiers.first);
2995+
//
2996+
// We need to be careful, because if `decl` is a generic declaration,
2997+
// then we really want the modifiers to apply to the inner declaration.
2998+
//
2999+
RefPtr<Decl> declToModify = decl;
3000+
if(auto genericDecl = decl.As<GenericDecl>())
3001+
declToModify = genericDecl->inner;
3002+
AddModifiers(declToModify.Ptr(), modifiers.first);
29963003

29973004
// Make sure the decl is properly nested inside its lexical parent
29983005
if (containerDecl)

0 commit comments

Comments
 (0)