mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
function Error() {}
|
|
Error.prototype.toString = function() {};
|
|
|
|
function String() {}
|
|
String.prototype.toString = function() {};
|
|
|
|
function Array() {}
|
|
Array.prototype.toString = function() {};
|
|
|
|
//semmle-extractor-options: --externs
|