summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/unit/tracerlocations.js
blob: aa4677c0f70a429b5b77a9aa2276bfa1303d467f (plain)
1
2
3
4
5
6
7
8
// For JS Tracer tests dealing with source locations.

function foo(x) {
  x += 6;
  return "bar";
}

foo(42);