You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/pitfall/pdfkit/node_modules/esrefactor/test/data/shadowed_argument.js

9 lines
240 B
JavaScript

7 years ago
function test(alpha, beta, zeta) {
var gamma = alpha + beta;
// 'zeta' does not refer to the above function parameter
var zeta = 42 / gamma; // declaration:zeta reference:zeta
return zeta; // cursor:zeta reference:zeta
}