File: named_arg.js

package info (click to toggle)
node-lexical-scope 1.2.0%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 220 kB
  • sloc: makefile: 20; sh: 13
file content (6 lines) | stat: -rw-r--r-- 85 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
function foo (x) {
    var a = x;
    return function (c) {
        a += c;
    };
}