JS: Model Array#toString

This commit is contained in:
Asger F
2025-02-17 11:10:51 +01:00
parent e8d1703224
commit d87534c7d0
2 changed files with 19 additions and 2 deletions

View File

@@ -3,5 +3,5 @@ import 'dummy';
function t1() {
const b1 = Buffer.from(source("t1.1"));
const b2 = Buffer.from(source("t1.2"));
sink(Buffer.concat([b1, b2]).toString("utf8")); // $ MISSING: hasTaintFlow=t1.1 hasTaintFlow=t1.2
sink(Buffer.concat([b1, b2]).toString("utf8")); // $ hasTaintFlow=t1.1 hasTaintFlow=t1.2
}