summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/substring/S15.5.4.15_A1_T12.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/String/prototype/substring/S15.5.4.15_A1_T12.js')
-rw-r--r--test/built-ins/String/prototype/substring/S15.5.4.15_A1_T12.js31
1 files changed, 10 insertions, 21 deletions
diff --git a/test/built-ins/String/prototype/substring/S15.5.4.15_A1_T12.js b/test/built-ins/String/prototype/substring/S15.5.4.15_A1_T12.js
index 43ae7ac78..b8f9af963 100644
--- a/test/built-ins/String/prototype/substring/S15.5.4.15_A1_T12.js
+++ b/test/built-ins/String/prototype/substring/S15.5.4.15_A1_T12.js
@@ -11,30 +11,19 @@ description: >
return exception
---*/
-var __obj = {
- valueOf: function() {
- return {};
- },
- toString: function() {
- throw "instart";
- }
-};
-var __obj2 = {
- valueOf: function() {
- throw "inend";
- }
-};
+var __obj = {valueOf:function(){return {};}, toString:function(){throw "instart";}};
+var __obj2 = {valueOf:function(){throw "inend";}};
var __str = new String("ABB\u0041BABAB");
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
-try {
- var x = __str.substring(__obj, __obj2);
- $ERROR('#1: "var x = __str.substring(__obj,__obj2)" lead to throw exception');
-} catch (e) {
- if (e !== "instart") {
- $ERROR('#1.1: Exception ==="instart". Actual: ' + e);
- }
-}
+ try {
+ var x = __str.substring(__obj, __obj2);
+ $ERROR('#1: "var x = __str.substring(__obj,__obj2)" lead to throw exception');
+ } catch (e) {
+ if (e!=="instart") {
+ $ERROR('#1.1: Exception ==="instart". Actual: '+e);
+ }
+ }
//
//////////////////////////////////////////////////////////////////////////////