summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/parser/bug-975484.js
blob: dfbd0818d1f067b35f3b6e95658da678906278e6 (plain)
1
2
3
4
5
6
7
var loc = Reflect.parse("f()").body[0].expression.loc;
assertEq(loc.start.column, 1);
assertEq(loc.end.column, 4);

loc = Reflect.parse("f(x)").body[0].expression.loc;
assertEq(loc.start.column, 1);
assertEq(loc.end.column, 5);