1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/devtools/server/tests/unit/tracerlocations.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,8 @@ 1.4 +// For JS Tracer tests dealing with source locations. 1.5 + 1.6 +function foo(x) { 1.7 + x += 6; 1.8 + return "bar"; 1.9 +} 1.10 + 1.11 +foo(42);