File: stack.js

package info (click to toggle)
node-raven-js 3.22.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,868 kB
  • sloc: makefile: 144; python: 34; sh: 2
file content (11 lines) | stat: -rw-r--r-- 118 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
(function () {
    function bar() {
        baz();
    }

    function foo() {
        bar();
    }

    foo();
})();