summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/lastIndexOf/S15.5.4.8_A4_T4.js
diff options
context:
space:
mode:
authorAndré Bargull <andre.bargull@gmail.com>2018-02-09 09:09:47 -0800
committerLeo Balter <leonardo.balter@gmail.com>2018-02-09 12:09:47 -0500
commitf95b56ab28c5f18150f30fbfa889a4f6ba0e50a1 (patch)
treed403f704c1b6a1842f12df380651919beaaf5fef /test/built-ins/String/prototype/lastIndexOf/S15.5.4.8_A4_T4.js
parenta01de4a722d088055a7d84d8c691ddd7109edb34 (diff)
downloadqtdeclarative-testsuites-f95b56ab28c5f18150f30fbfa889a4f6ba0e50a1.tar.gz
Revert "js-beautify: make all indentation consistent (depth & character) (#1409)" (#1412)
This reverts commit a01de4a722d088055a7d84d8c691ddd7109edb34.
Diffstat (limited to 'test/built-ins/String/prototype/lastIndexOf/S15.5.4.8_A4_T4.js')
-rw-r--r--test/built-ins/String/prototype/lastIndexOf/S15.5.4.8_A4_T4.js30
1 files changed, 11 insertions, 19 deletions
diff --git a/test/built-ins/String/prototype/lastIndexOf/S15.5.4.8_A4_T4.js b/test/built-ins/String/prototype/lastIndexOf/S15.5.4.8_A4_T4.js
index 232fc191c..bd1e7613f 100644
--- a/test/built-ins/String/prototype/lastIndexOf/S15.5.4.8_A4_T4.js
+++ b/test/built-ins/String/prototype/lastIndexOf/S15.5.4.8_A4_T4.js
@@ -9,28 +9,20 @@ es5id: 15.5.4.8_A4_T4
description: Override toString and valueOf functions, and they throw exceptions
---*/
-var __obj = {
- toString: function() {
- throw "intostr";
- }
-};
-var __obj2 = {
- valueOf: function() {
- throw "intoint";
- }
-};
+var __obj = {toString:function(){throw "intostr";}};
+var __obj2 = {valueOf:function(){throw "intoint";}};
var __instance = new Number(10001.10001);
-Number.prototype.lastIndexOf = String.prototype.lastIndexOf;
+Number.prototype.lastIndexOf=String.prototype.lastIndexOf;
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
-try {
- var x = __instance.lastIndexOf(__obj, __obj2);
- $ERROR('#1: var x = __instance.lastIndexOf(__obj, __obj2) lead to throwing exception');
-} catch (e) {
- if (e !== "intostr") {
- $ERROR('#1.1: Exception === "intostr". Actual: ' + e);
- }
-}
+ try {
+ var x = __instance.lastIndexOf(__obj, __obj2);
+ $ERROR('#1: var x = __instance.lastIndexOf(__obj, __obj2) lead to throwing exception');
+ } catch (e) {
+ if (e!=="intostr") {
+ $ERROR('#1.1: Exception === "intostr". Actual: '+e);
+ }
+ }
//
//////////////////////////////////////////////////////////////////////////////