Move major DevTools files to new directories using the following steps: hg mv browser/devtools devtools/client hg mv toolkit/devtools/server devtools/server hg mv toolkit/devtools devtools/shared No other changes are made.
9 lines
111 B
JavaScript
9 lines
111 B
JavaScript
// For JS Tracer tests dealing with source locations.
|
|
|
|
function foo(x) {
|
|
x += 6;
|
|
return "bar";
|
|
}
|
|
|
|
foo(42);
|