We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8286737 + dc01803 commit c6e5551Copy full SHA for c6e5551
source/slang/parser.cpp
@@ -2992,7 +2992,14 @@ namespace Slang
2992
{
2993
// Add any modifiers we parsed before the declaration to the list
2994
// of modifiers on the declaration itself.
2995
- AddModifiers(decl.Ptr(), modifiers.first);
+ //
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);
3003
3004
// Make sure the decl is properly nested inside its lexical parent
3005
if (containerDecl)
0 commit comments