mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 13:36:08 +00:00

Reenables b31414bf4f9898f7817a9fcf8a91f62ec26f3eaf. Also adds a new warning for missing `--symbol-graph-dir` arg when `--emit-extension-symbol-graphs` is provided. This also reverts the commit that removed.
22 lines
780 B
Objective-C
22 lines
780 B
Objective-C
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -extract-api --pretty-sgf --emit-sgf-symbol-labels-for-testing \
|
|
// RUN: -triple arm64-apple-macosx -x objective-c-header %s -o - -verify | FileCheck %s
|
|
|
|
@protocol Protocol
|
|
@end
|
|
|
|
@interface Interface
|
|
@end
|
|
|
|
@interface Interface (Category) <Protocol>
|
|
// CHECK-DAG: "!testRelLabel": "conformsTo $ c:objc(cs)Interface $ c:objc(pl)Protocol"
|
|
@property int Property;
|
|
// CHECK-DAG: "!testRelLabel": "memberOf $ c:objc(cs)Interface(py)Property $ c:objc(cs)Interface"
|
|
- (void)InstanceMethod;
|
|
// CHECK-DAG: "!testRelLabel": "memberOf $ c:objc(cs)Interface(im)InstanceMethod $ c:objc(cs)Interface"
|
|
+ (void)ClassMethod;
|
|
// CHECK-DAG: "!testRelLabel": "memberOf $ c:objc(cs)Interface(cm)ClassMethod $ c:objc(cs)Interface"
|
|
@end
|
|
|
|
// expected-no-diagnostics
|