Files
2018-08-02 17:53:23 +01:00

11 lines
177 B
JavaScript

// NOT OK
[1, 2, 3].map(function(x) x * x);
// OK
[1, 2, 3].map(function(x) { return x * x; });
// OK
[1, 2, 3].map((x) => x * x);
//semmle-extractor-options: --experimental