chromium/third_party/blink/web_tests/http/tests/devtools/sources/debugger-breakpoints/resources/a.js

function foo() {
  return 42;
}

function boo() {
  return 239;
}

function main() {
  var a = 1;
  var b = 2;
  return a + b;
}

function process(a, b) {
  a = a * 2;
  b = b / 2;
  return a + b;
}







function another() {
  return 1;
}