mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
25 lines
558 B
JavaScript
25 lines
558 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Array.sort should not eat exceptions
|
|
*
|
|
* @path ch15/15.4/15.4.4/15.4.4.11/S15.4.4.11_A5_T1.js
|
|
* @description comparefn function throw "error"
|
|
*/
|
|
|
|
//CHECK#1
|
|
var myComparefn = function(x,y) {
|
|
throw "error";
|
|
}
|
|
var x = [1,0];
|
|
try {
|
|
x.sort(myComparefn)
|
|
$ERROR('#1.1: Array.sort should not eat exceptions');
|
|
} catch(e) {
|
|
if (e !== "error") {
|
|
$ERROR('#1.2: Array.sort should not eat exceptions');
|
|
}
|
|
}
|
|
|