509 lines
14 KiB
Markdown
509 lines
14 KiB
Markdown
# t20045 - Test case for template function call expressions with callables
|
|
## Config
|
|
```yaml
|
|
add_compile_flags:
|
|
- -fparse-all-comments
|
|
diagrams:
|
|
t20045_sequence:
|
|
type: sequence
|
|
glob:
|
|
- t20045.cc
|
|
include:
|
|
namespaces:
|
|
- clanguml::t20045
|
|
using_namespace: clanguml::t20045
|
|
from:
|
|
- function: "clanguml::t20045::tmain()"
|
|
```
|
|
## Source code
|
|
File `tests/t20045/t20045.cc`
|
|
```cpp
|
|
namespace clanguml {
|
|
namespace t20045 {
|
|
|
|
template <typename F> int a1(F &&f) { return f(42); }
|
|
|
|
int a2(int x) { return 2; }
|
|
|
|
int a3(int x) { return 3; }
|
|
|
|
struct B {
|
|
int b1(int x) { return x + 1; }
|
|
int b2(int x) { return x + 2; }
|
|
};
|
|
|
|
class C {
|
|
public:
|
|
explicit C(int x)
|
|
: x_{x}
|
|
{
|
|
}
|
|
|
|
int get_x() const { return x_; }
|
|
|
|
private:
|
|
int x_;
|
|
};
|
|
|
|
int tmain()
|
|
{
|
|
B b;
|
|
|
|
// \uml{call clanguml::t20045::a2(int)}
|
|
auto v1 = a1(a2);
|
|
|
|
auto v2 = a1([](auto &&arg) { return a3(arg); });
|
|
|
|
auto v3 = a1([&](auto &&arg) { return b.b1(arg); });
|
|
|
|
auto v4 = a1([](auto &&arg) {
|
|
C c(arg);
|
|
return c.get_x();
|
|
});
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
```
|
|
## Generated PlantUML diagrams
|
|

|
|
## Generated Mermaid diagrams
|
|

|
|
## Generated JSON models
|
|
```json
|
|
{
|
|
"diagram_type": "sequence",
|
|
"name": "t20045_sequence",
|
|
"participants": [
|
|
{
|
|
"display_name": "tmain()",
|
|
"full_name": "clanguml::t20045::tmain()",
|
|
"id": "16939520816468969515",
|
|
"name": "tmain",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 5,
|
|
"file": "t20045.cc",
|
|
"line": 28,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "function"
|
|
},
|
|
{
|
|
"display_name": "a2(int)",
|
|
"full_name": "clanguml::t20045::a2(int)",
|
|
"id": "3377096248061203375",
|
|
"name": "a2",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 5,
|
|
"file": "t20045.cc",
|
|
"line": 6,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "function"
|
|
},
|
|
{
|
|
"display_name": "a1<(lambda at t20045.cc:35:18)>((lambda at t20045.cc:35:18) &&)",
|
|
"full_name": "clanguml::t20045::a1<(lambda at t20045.cc:35:18)>((lambda at /home/bartek/devel/clang-uml/tests/t20045/t20045.cc:35:18) &&)",
|
|
"id": "6169938608339113919",
|
|
"name": "a1",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 27,
|
|
"file": "t20045.cc",
|
|
"line": 4,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "function_template"
|
|
},
|
|
{
|
|
"activities": [
|
|
{
|
|
"display_name": "operator()(auto &&) const",
|
|
"full_name": "clanguml::t20045::tmain()::(lambda t20045.cc:35:18)::operator()(auto &&) const",
|
|
"id": "11363928895219585509",
|
|
"name": "operator()",
|
|
"namespace": "",
|
|
"type": "method"
|
|
}
|
|
],
|
|
"display_name": "tmain()::(lambda t20045.cc:35:18)",
|
|
"full_name": "clanguml::t20045::tmain()::(lambda t20045.cc:35:18)",
|
|
"id": "293155873414345883",
|
|
"name": "tmain()::(lambda t20045.cc:35:18)",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 18,
|
|
"file": "t20045.cc",
|
|
"line": 35,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "lambda"
|
|
},
|
|
{
|
|
"display_name": "a3(int)",
|
|
"full_name": "clanguml::t20045::a3(int)",
|
|
"id": "3194463370437283893",
|
|
"name": "a3",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 5,
|
|
"file": "t20045.cc",
|
|
"line": 8,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "function"
|
|
},
|
|
{
|
|
"display_name": "a1<(lambda at t20045.cc:37:18)>((lambda at t20045.cc:37:18) &&)",
|
|
"full_name": "clanguml::t20045::a1<(lambda at t20045.cc:37:18)>((lambda at /home/bartek/devel/clang-uml/tests/t20045/t20045.cc:37:18) &&)",
|
|
"id": "5666118984389824659",
|
|
"name": "a1",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 27,
|
|
"file": "t20045.cc",
|
|
"line": 4,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "function_template"
|
|
},
|
|
{
|
|
"activities": [
|
|
{
|
|
"display_name": "operator()(auto &&) const",
|
|
"full_name": "clanguml::t20045::tmain()::(lambda t20045.cc:37:18)::operator()(auto &&) const",
|
|
"id": "15961739097072089156",
|
|
"name": "operator()",
|
|
"namespace": "",
|
|
"type": "method"
|
|
}
|
|
],
|
|
"display_name": "tmain()::(lambda t20045.cc:37:18)",
|
|
"full_name": "clanguml::t20045::tmain()::(lambda t20045.cc:37:18)",
|
|
"id": "12450159380580033187",
|
|
"name": "tmain()::(lambda t20045.cc:37:18)",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 18,
|
|
"file": "t20045.cc",
|
|
"line": 37,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "lambda"
|
|
},
|
|
{
|
|
"activities": [
|
|
{
|
|
"display_name": "b1(int)",
|
|
"full_name": "clanguml::t20045::B::b1(int)",
|
|
"id": "6563501167989525913",
|
|
"name": "b1",
|
|
"namespace": "",
|
|
"source_location": {
|
|
"column": 9,
|
|
"file": "t20045.cc",
|
|
"line": 11,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "method"
|
|
}
|
|
],
|
|
"display_name": "B",
|
|
"full_name": "clanguml::t20045::B",
|
|
"id": "13903098846020743486",
|
|
"name": "B",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 8,
|
|
"file": "t20045.cc",
|
|
"line": 10,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "class"
|
|
},
|
|
{
|
|
"display_name": "a1<(lambda at t20045.cc:39:18)>((lambda at t20045.cc:39:18) &&)",
|
|
"full_name": "clanguml::t20045::a1<(lambda at t20045.cc:39:18)>((lambda at /home/bartek/devel/clang-uml/tests/t20045/t20045.cc:39:18) &&)",
|
|
"id": "15480369900577113009",
|
|
"name": "a1",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 27,
|
|
"file": "t20045.cc",
|
|
"line": 4,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "function_template"
|
|
},
|
|
{
|
|
"activities": [
|
|
{
|
|
"display_name": "operator()(auto &&) const",
|
|
"full_name": "clanguml::t20045::tmain()::(lambda t20045.cc:39:18)::operator()(auto &&) const",
|
|
"id": "6294930768372487717",
|
|
"name": "operator()",
|
|
"namespace": "",
|
|
"type": "method"
|
|
}
|
|
],
|
|
"display_name": "tmain()::(lambda t20045.cc:39:18)",
|
|
"full_name": "clanguml::t20045::tmain()::(lambda t20045.cc:39:18)",
|
|
"id": "1059230251449926314",
|
|
"name": "tmain()::(lambda t20045.cc:39:18)",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 18,
|
|
"file": "t20045.cc",
|
|
"line": 39,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "lambda"
|
|
},
|
|
{
|
|
"activities": [
|
|
{
|
|
"display_name": "get_x() const",
|
|
"full_name": "clanguml::t20045::C::get_x() const",
|
|
"id": "4566523073322446011",
|
|
"name": "get_x",
|
|
"namespace": "",
|
|
"source_location": {
|
|
"column": 9,
|
|
"file": "t20045.cc",
|
|
"line": 22,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "method"
|
|
}
|
|
],
|
|
"display_name": "C",
|
|
"full_name": "clanguml::t20045::C",
|
|
"id": "14497592112534901001",
|
|
"name": "C",
|
|
"namespace": "clanguml::t20045",
|
|
"source_location": {
|
|
"column": 7,
|
|
"file": "t20045.cc",
|
|
"line": 15,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"type": "class"
|
|
}
|
|
],
|
|
"sequences": [
|
|
{
|
|
"messages": [
|
|
{
|
|
"from": {
|
|
"activity_id": "16939520816468969515",
|
|
"participant_id": "16939520816468969515"
|
|
},
|
|
"name": "",
|
|
"return_type": "int",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 15,
|
|
"file": "t20045.cc",
|
|
"line": 33,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "3377096248061203375",
|
|
"participant_id": "3377096248061203375"
|
|
},
|
|
"type": "message"
|
|
},
|
|
{
|
|
"from": {
|
|
"activity_id": "16939520816468969515",
|
|
"participant_id": "16939520816468969515"
|
|
},
|
|
"name": "",
|
|
"return_type": "",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 15,
|
|
"file": "t20045.cc",
|
|
"line": 35,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "6169938608339113919",
|
|
"participant_id": "6169938608339113919"
|
|
},
|
|
"type": "message"
|
|
},
|
|
{
|
|
"from": {
|
|
"activity_id": "6169938608339113919",
|
|
"participant_id": "6169938608339113919"
|
|
},
|
|
"name": "operator()(auto &&) const",
|
|
"return_type": "auto",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 46,
|
|
"file": "t20045.cc",
|
|
"line": 4,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "11363928895219585509",
|
|
"participant_id": "293155873414345883"
|
|
},
|
|
"type": "message"
|
|
},
|
|
{
|
|
"from": {
|
|
"activity_id": "11363928895219585509",
|
|
"participant_id": "293155873414345883"
|
|
},
|
|
"name": "",
|
|
"return_type": "int",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 42,
|
|
"file": "t20045.cc",
|
|
"line": 35,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "3194463370437283893",
|
|
"participant_id": "3194463370437283893"
|
|
},
|
|
"type": "message"
|
|
},
|
|
{
|
|
"from": {
|
|
"activity_id": "16939520816468969515",
|
|
"participant_id": "16939520816468969515"
|
|
},
|
|
"name": "",
|
|
"return_type": "",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 15,
|
|
"file": "t20045.cc",
|
|
"line": 37,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "5666118984389824659",
|
|
"participant_id": "5666118984389824659"
|
|
},
|
|
"type": "message"
|
|
},
|
|
{
|
|
"from": {
|
|
"activity_id": "5666118984389824659",
|
|
"participant_id": "5666118984389824659"
|
|
},
|
|
"name": "operator()(auto &&) const",
|
|
"return_type": "auto",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 46,
|
|
"file": "t20045.cc",
|
|
"line": 4,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "15961739097072089156",
|
|
"participant_id": "12450159380580033187"
|
|
},
|
|
"type": "message"
|
|
},
|
|
{
|
|
"from": {
|
|
"activity_id": "15961739097072089156",
|
|
"participant_id": "12450159380580033187"
|
|
},
|
|
"name": "b1(int)",
|
|
"return_type": "int",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 43,
|
|
"file": "t20045.cc",
|
|
"line": 37,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "6563501167989525913",
|
|
"participant_id": "13903098846020743486"
|
|
},
|
|
"type": "message"
|
|
},
|
|
{
|
|
"from": {
|
|
"activity_id": "16939520816468969515",
|
|
"participant_id": "16939520816468969515"
|
|
},
|
|
"name": "",
|
|
"return_type": "",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 15,
|
|
"file": "t20045.cc",
|
|
"line": 39,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "15480369900577113009",
|
|
"participant_id": "15480369900577113009"
|
|
},
|
|
"type": "message"
|
|
},
|
|
{
|
|
"from": {
|
|
"activity_id": "15480369900577113009",
|
|
"participant_id": "15480369900577113009"
|
|
},
|
|
"name": "operator()(auto &&) const",
|
|
"return_type": "auto",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 46,
|
|
"file": "t20045.cc",
|
|
"line": 4,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "6294930768372487717",
|
|
"participant_id": "1059230251449926314"
|
|
},
|
|
"type": "message"
|
|
},
|
|
{
|
|
"from": {
|
|
"activity_id": "6294930768372487717",
|
|
"participant_id": "1059230251449926314"
|
|
},
|
|
"name": "get_x() const",
|
|
"return_type": "int",
|
|
"scope": "normal",
|
|
"source_location": {
|
|
"column": 16,
|
|
"file": "t20045.cc",
|
|
"line": 41,
|
|
"translation_unit": "t20045.cc"
|
|
},
|
|
"to": {
|
|
"activity_id": "4566523073322446011",
|
|
"participant_id": "14497592112534901001"
|
|
},
|
|
"type": "message"
|
|
}
|
|
],
|
|
"start_from": {
|
|
"id": "16939520816468969515",
|
|
"location": "clanguml::t20045::tmain()"
|
|
}
|
|
}
|
|
],
|
|
"using_namespace": "clanguml::t20045"
|
|
}
|
|
```
|