python: support encoding lower bound

This commit is contained in:
Rasmus Lerchedahl Petersen
2024-03-08 14:59:28 +01:00
parent 580e68d5de
commit 3601773856

View File

@@ -27,6 +27,11 @@ module Input implements InputSig<DataFlowImplSpecific::PythonDataFlow> {
result = i.toString()
)
or
exists(int i |
pos.isPositionalLowerBound(i) and
result = i + ".."
)
or
exists(string name |
pos.isKeyword(name) and
result = name + ":"