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/jaeger/bug684084.js
js/src/jit-test/tests/jaeger/bug684084.js
changeset 0
6474c204b198
equal
deleted
inserted
replaced
-1:000000000000
0:9e1cca420520
1
// |jit-test| error: TypeError
2
function Integer( value, exception ) {
3
try { } catch ( e ) { }
4
new (value = this)( this.value );
5
if ( Math.floor(value) != value || isNaN(value) ) { }
6
}
7
new Integer( 3, false );