NemoTR

Results 14 issues of NemoTR

Here is the test code: ```C++ int f() { int a = 10; a = a + 1; for (int i = 1; i

Here is the code: ```C++ int f(int a, int b, int c) { return g(a, b + 1, c); } ``` And its ast is like: ![image](https://user-images.githubusercontent.com/50135026/167295396-a4bf5c4e-5ba2-42a8-9819-ac84a7aa763f.png) Its ddg is...

Edge travesal in map seems doesn't work: ![image](https://user-images.githubusercontent.com/50135026/167398180-11875a07-0ccb-4b3c-b7b4-5bfbebf6ab89.png) Is this normal? _Originally posted by @NemoTR in https://github.com/joernio/joern/issues/1367#issuecomment-1120950693_

I'm using the newest release of joern, I use the joern server to get the results, the responses of joern server seem not right, here are some examples: ``` query...

This is the code. ```c++ int a; int g() { return a; } int f() { a = 10; return g(); } ``` In this code, `a` is a global...

The C++ code is: ```C++ int f(int x, int *y) { int a, b, c = 10; a = 10; b = a; a = g(c); return a; } ```...

The C++ code is: ```C++ int f(int x, int *y) { *y = 10; y = &x; *y = 20; return x; } ``` The ddg is: ![image](https://user-images.githubusercontent.com/50135026/166456050-4c39099c-af24-477f-a690-21e43ff318f8.png) There is...

Here is the test code: ```c++ int a[10], c = 2; a[c] = 3; a[c + 1] = 4; c += 1; return a[c]; ``` ![image](https://user-images.githubusercontent.com/50135026/166449099-4d81e8af-3aaa-4f60-8fc3-8d4ef8549dae.png) There shoudln't be an...

This is the code: ```C struct R { int a; } r; ``` This is the attribute of "TYPE_DECL" node "R": ```json "7": { "inheritsFromTypeFullName": [], "name": "R", "astParentFullName": "",...