Python: Compiles and mostly pass tests

- add flowsummaries shared files
- register in indentical files
- fix initial non-monotonic recursions
  - add DataFlowSourceCall
  - add resolvedCall
  - add SourceParameterNode

failing tests:
- 3/library-tests/with/test.ql
This commit is contained in:
Rasmus Lerchedahl Petersen
2022-04-01 10:34:14 +02:00
committed by GitHub
parent 1d10f14629
commit 80175a9af5
35 changed files with 2301 additions and 72 deletions

View File

@@ -15,7 +15,7 @@ class DataFlowCallTest extends InlineExpectationsTest {
override predicate hasActualResult(Location location, string element, string tag, string value) {
exists(location.getFile().getRelativePath()) and
exists(DataFlowCall call |
exists(DataFlowSourceCall call |
location = call.getLocation() and
element = call.toString()
|