mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
17 lines
259 B
JavaScript
17 lines
259 B
JavaScript
function Point(x, y) {}
|
|
|
|
Point.prototype.move = function(dx, dy) {};
|
|
Point.prototype.obj = {};
|
|
Point.prototype.secret;
|
|
|
|
Point.ORIGIN;
|
|
Point.foo = function() {};
|
|
|
|
var someGlobal;
|
|
|
|
/** @typedef {String} */
|
|
var MyString;
|
|
|
|
Point.prototype['final'];
|
|
|
|
'use strict'; |