Issue 61478
Summary Declaration fragments for properties include spurious additional attributes.
Labels good first issue, clang:tooling
Assignees
Reporter daniel-grumberg
    Declaration fragments for properties include additional property attributes that were not specified in the sources

```obj-c
@property(nonatomic) BOOL MyProperty;
```

instead the declaration fragments in the generated symbol graph looks

```obj-c
(nonatomic, assign, unsafe_unretained, readwrite) BOOL MyProperty;
```

Note the extra assign, unsafe_unretained, readwrite property attributes in the declaration fragments.

_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to