mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
18 lines
207 B
JavaScript
18 lines
207 B
JavaScript
export let x = 0, y = 0;
|
|
|
|
export function setX(newX) {
|
|
x = newX;
|
|
};
|
|
|
|
export default true;
|
|
|
|
let z = someGlobal;
|
|
|
|
export let w;
|
|
w = "w";
|
|
|
|
export let notAlwaysZero = 0;
|
|
function bump() {
|
|
++notAlwaysZero;
|
|
}
|