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/collections/Set-constructor-1.js
js/src/jit-test/tests/collections/Set-constructor-1.js
changeset 0
6474c204b198
equal
deleted
inserted
replaced
-1:000000000000
0:24abcfe90edc
1
// The Set constructor creates an empty Set by default.
2
3
assertEq(Set().size, 0);
4
assertEq((new Set).size, 0);
5
assertEq(Set(undefined).size, 0);
6
assertEq(new Set(undefined).size, 0);