Max Leuthäuser
Max Leuthäuser
This is a known limitation of Joern's dataflow engine (also manifests with flows in and out of lambdas / anonymous function in all supported languages at the moment. I am...
`open_file_1` and `_2` respectively are not calls here. They are method references pointing to their respective methods. You can see that with: `cpg.call.nameExact(".pointerCall").ast.isMethodRef.l`.
Yeah, because we currently do not link the call that's actually behind `(cond ? open_file_1 : open_file_2) (source)` (either `open_file_1(source)` or `open_file_2(source)`) to the corresponding method via the underlying method...
I will comment on jssrc2cpg vs js2cpg first: The latter uses babel to transpile any JS or TS code to plain ES6 JS code and parses the result with the...