@@ -36,7 +36,7 @@ def test():
36
36
m_unsafe + SAFE , # $ escapeInput=SAFE escapeKind=html escapeOutput=BinaryExpr MISSING: tainted
37
37
SAFE + m_unsafe , # $ escapeInput=SAFE escapeKind=html escapeOutput=BinaryExpr MISSING: tainted
38
38
m_unsafe .format (SAFE ), # $ escapeInput=SAFE escapeKind=html escapeOutput=m_unsafe.format(..) MISSING: tainted
39
- m_unsafe % SAFE , # $ tainted MISSING: escapeInput=ts escapeKind=html escapeOutput=BinaryExpr
39
+ m_unsafe % SAFE , # $ escapeInput=SAFE escapeKind=html escapeOutput=BinaryExpr MISSING: tainted
40
40
m_unsafe + ts , # $ escapeInput=ts escapeKind=html escapeOutput=BinaryExpr MISSING: tainted
41
41
42
42
m_safe .format (m_unsafe ), # $ tainted
@@ -56,7 +56,7 @@ def test():
56
56
m_safe + ts , # $ escapeInput=ts escapeKind=html escapeOutput=BinaryExpr
57
57
ts + m_safe , # $ escapeInput=ts escapeKind=html escapeOutput=BinaryExpr
58
58
m_safe .format (ts ), # $ escapeInput=ts escapeKind=html escapeOutput=m_safe.format(..)
59
- m_safe % ts , # $ SPURIOUS: tainted MISSING: escapeInput=ts escapeKind=html escapeOutput=BinaryExpr
59
+ m_safe % ts , # $ escapeInput=ts escapeKind=html escapeOutput=BinaryExpr
60
60
61
61
escape (ts ) + ts , # $ escapeInput=ts escapeKind=html escapeOutput=BinaryExpr escapeOutput=escape(..)
62
62
escape_silent (ts ) + ts , # $ escapeInput=ts escapeKind=html escapeOutput=BinaryExpr escapeOutput=escape_silent(..)
0 commit comments