The Tor Browser
/ file comparison
Search:
summary
shortlog
changelog
graph
tags
bookmarks
branches
files
help
file
revisions
annotate
diff
comparison
raw
comparison: js/src/jit-test/tests/parser/bug-975484.js
js/src/jit-test/tests/parser/bug-975484.js
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
equal
deleted
inserted
replaced
-1:000000000000
0:4f97226fc420
1
var loc = Reflect.parse("f()").body[0].expression.loc;
2
assertEq(loc.start.column, 0);
3
assertEq(loc.end.column, 3);
4
5
loc = Reflect.parse("f(x)").body[0].expression.loc;
6
assertEq(loc.start.column, 0);
7
assertEq(loc.end.column, 4);