mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 17:06:07 +00:00

This failed the test suite due to missing DiagGroup for a new warning. This reverts commit b31414bf4f9898f7817a9fcf8a91f62ec26f3eaf.
252 lines
5.2 KiB
C++
252 lines
5.2 KiB
C++
// RUN: rm -rf %t
|
|
// RUN: split-file %s %t
|
|
// RUN: sed -e "s@INPUT_DIR@%{/t:regex_replacement}@g" \
|
|
// RUN: %t/reference.output.json.in >> %t/reference.output.json
|
|
// RUN: %clang_cc1 -extract-api -triple arm64-apple-macosx \
|
|
// RUN: -x c++-header %t/input.h -o %t/output.json -verify
|
|
|
|
// Generator version is not consistent across test runs, normalize it.
|
|
// RUN: sed -e "s@\"generator\": \".*\"@\"generator\": \"?\"@g" \
|
|
// RUN: %t/output.json >> %t/output-normalized.json
|
|
// RUN: diff %t/reference.output.json %t/output-normalized.json
|
|
|
|
//--- input.h
|
|
class Foo {
|
|
operator int();
|
|
explicit operator double();
|
|
};
|
|
/// expected-no-diagnostics
|
|
|
|
//--- reference.output.json.in
|
|
{
|
|
"metadata": {
|
|
"formatVersion": {
|
|
"major": 0,
|
|
"minor": 5,
|
|
"patch": 3
|
|
},
|
|
"generator": "?"
|
|
},
|
|
"module": {
|
|
"name": "",
|
|
"platform": {
|
|
"architecture": "arm64",
|
|
"operatingSystem": {
|
|
"minimumVersion": {
|
|
"major": 11,
|
|
"minor": 0,
|
|
"patch": 0
|
|
},
|
|
"name": "macosx"
|
|
},
|
|
"vendor": "apple"
|
|
}
|
|
},
|
|
"relationships": [
|
|
{
|
|
"kind": "memberOf",
|
|
"source": "c:@S@Foo@F@operator int#",
|
|
"target": "c:@S@Foo",
|
|
"targetFallback": "Foo"
|
|
},
|
|
{
|
|
"kind": "memberOf",
|
|
"source": "c:@S@Foo@F@operator double#",
|
|
"target": "c:@S@Foo",
|
|
"targetFallback": "Foo"
|
|
}
|
|
],
|
|
"symbols": [
|
|
{
|
|
"accessLevel": "public",
|
|
"declarationFragments": [
|
|
{
|
|
"kind": "keyword",
|
|
"spelling": "class"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": " "
|
|
},
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "Foo"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": ";"
|
|
}
|
|
],
|
|
"identifier": {
|
|
"interfaceLanguage": "c++",
|
|
"precise": "c:@S@Foo"
|
|
},
|
|
"kind": {
|
|
"displayName": "Class",
|
|
"identifier": "c++.class"
|
|
},
|
|
"location": {
|
|
"position": {
|
|
"character": 6,
|
|
"line": 0
|
|
},
|
|
"uri": "file://INPUT_DIR/input.h"
|
|
},
|
|
"names": {
|
|
"navigator": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "Foo"
|
|
}
|
|
],
|
|
"subHeading": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "Foo"
|
|
}
|
|
],
|
|
"title": "Foo"
|
|
},
|
|
"pathComponents": [
|
|
"Foo"
|
|
]
|
|
},
|
|
{
|
|
"accessLevel": "private",
|
|
"declarationFragments": [
|
|
{
|
|
"kind": "keyword",
|
|
"spelling": "operator"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": " "
|
|
},
|
|
{
|
|
"kind": "typeIdentifier",
|
|
"spelling": "int"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": "();"
|
|
}
|
|
],
|
|
"functionSignature": {
|
|
"returns": [
|
|
{
|
|
"kind": "typeIdentifier",
|
|
"preciseIdentifier": "c:I",
|
|
"spelling": "int"
|
|
}
|
|
]
|
|
},
|
|
"identifier": {
|
|
"interfaceLanguage": "c++",
|
|
"precise": "c:@S@Foo@F@operator int#"
|
|
},
|
|
"kind": {
|
|
"displayName": "Instance Method",
|
|
"identifier": "c++.method"
|
|
},
|
|
"location": {
|
|
"position": {
|
|
"character": 2,
|
|
"line": 1
|
|
},
|
|
"uri": "file://INPUT_DIR/input.h"
|
|
},
|
|
"names": {
|
|
"navigator": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "operator int"
|
|
}
|
|
],
|
|
"subHeading": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "int"
|
|
}
|
|
],
|
|
"title": "operator int"
|
|
},
|
|
"pathComponents": [
|
|
"Foo",
|
|
"operator int"
|
|
]
|
|
},
|
|
{
|
|
"accessLevel": "private",
|
|
"declarationFragments": [
|
|
{
|
|
"kind": "keyword",
|
|
"spelling": "explicit"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": " "
|
|
},
|
|
{
|
|
"kind": "keyword",
|
|
"spelling": "operator"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": " "
|
|
},
|
|
{
|
|
"kind": "typeIdentifier",
|
|
"spelling": "double"
|
|
},
|
|
{
|
|
"kind": "text",
|
|
"spelling": "();"
|
|
}
|
|
],
|
|
"functionSignature": {
|
|
"returns": [
|
|
{
|
|
"kind": "typeIdentifier",
|
|
"preciseIdentifier": "c:d",
|
|
"spelling": "double"
|
|
}
|
|
]
|
|
},
|
|
"identifier": {
|
|
"interfaceLanguage": "c++",
|
|
"precise": "c:@S@Foo@F@operator double#"
|
|
},
|
|
"kind": {
|
|
"displayName": "Instance Method",
|
|
"identifier": "c++.method"
|
|
},
|
|
"location": {
|
|
"position": {
|
|
"character": 11,
|
|
"line": 2
|
|
},
|
|
"uri": "file://INPUT_DIR/input.h"
|
|
},
|
|
"names": {
|
|
"navigator": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "operator double"
|
|
}
|
|
],
|
|
"subHeading": [
|
|
{
|
|
"kind": "identifier",
|
|
"spelling": "double"
|
|
}
|
|
],
|
|
"title": "operator double"
|
|
},
|
|
"pathComponents": [
|
|
"Foo",
|
|
"operator double"
|
|
]
|
|
}
|
|
]
|
|
}
|