jscript: Added VT_R8 to string conversion implementation.
[wine/multimedia.git] / dlls / jscript / tests / lang.js
blob63c8bc0d9b673731a4a46c99a66f61370b043324
1 /*
2  * Copyright 2008 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
19 var tmp;
21 ok(true, "true is not true?");
22 ok(!false, "!false is not true");
23 ok(!undefined, "!undefined is not true");
24 ok(!null, "!null is not true");
25 ok(!0, "!0 is not true");
26 ok(!0.0, "!0.0 is not true");
28 ok(1 === 1, "1 === 1 is false");
29 ok(!(1 === 2), "!(1 === 2) is false");
30 ok(1.0 === 1, "1.0 === 1 is false");
31 ok("abc" === "abc", "\"abc\" === \"abc\" is false");
32 ok(true === true, "true === true is false");
33 ok(null === null, "null === null is false");
34 ok(undefined === undefined, "undefined === undefined is false");
35 ok(!(undefined === null), "!(undefined === null) is false");
37 ok(1 !== 2, "1 !== 2 is false");
38 ok(null !== undefined, "null !== undefined is false");
40 ok(1 == 1, "1 == 1 is false");
41 ok(!(1 == 2), "!(1 == 2) is false");
42 ok(1.0 == 1, "1.0 == 1 is false");
43 ok("abc" == "abc", "\"abc\" == \"abc\" is false");
44 ok(true == true, "true == true is false");
45 ok(null == null, "null == null is false");
46 ok(undefined == undefined, "undefined == undefined is false");
47 ok(undefined == null, "undefined == null is false");
48 ok(true == 1, "true == 1 is false");
49 ok(!(true == 2), "true == 2");
50 ok(0 == false, "0 == false is false");
52 ok(1 != 2, "1 != 2 is false");
53 ok(false != 1, "false != 1 is false");
55 var trueVar = true;
56 ok(trueVar, "trueVar is not true");
58 ok(ScriptEngine.length === 0, "ScriptEngine.length is not 0");
60 function testFunc1(x, y) {
61     ok(this !== undefined, "this is undefined");
62     ok(x === true, "x is not 1");
63     ok(y === "test", "y is not \"test\"");
64     ok(arguments.length === 2, "arguments.length is not 2");
65     ok(arguments["0"] === true, "arguments[0] is not true");
66     ok(arguments["1"] === "test", "arguments[1] is not \"test\"");
68     return true;
71 ok(testFunc1.length === 2, "testFunc1.length is not 2");
73 ok(Object.prototype !== undefined, "Object.prototype is undefined");
74 ok(Object.prototype.prototype === undefined, "Object.prototype is not undefined");
75 ok(String.prototype !== undefined, "String.prototype is undefined");
76 ok(Array.prototype !== undefined, "Array.prototype is undefined");
77 ok(Boolean.prototype !== undefined, "Boolean.prototype is undefined");
78 ok(Number.prototype !== undefined, "Number.prototype is undefined");
79 ok(RegExp.prototype !== undefined, "RegExp.prototype is undefined");
80 ok(Math !== undefined, "Math is undefined");
81 ok(Math.prototype === undefined, "Math.prototype is not undefined");
82 ok(Function.prototype !== undefined, "Function.prototype is undefined");
83 ok(Function.prototype.prototype === undefined, "Function.prototype is not undefined");
85 Function.prototype.test = true;
86 ok(testFunc1.test === true, "testFunc1.test !== true");
87 ok(Function.test === true, "Function.test !== true");
89 ok(typeof(0) === "number", "typeof(0) is not number");
90 ok(typeof(1.5) === "number", "typeof(1.5) is not number");
91 ok(typeof("abc") === "string", "typeof(\"abc\") is not string");
92 ok(typeof("") === "string", "typeof(\"\") is not string");
93 ok(typeof(true) === "boolean", "typeof(true) is not boolean");
94 ok(typeof(null) === "object", "typeof(null) is not object");
95 ok(typeof(undefined) === "undefined", "typeof(undefined) is not undefined");
96 ok(typeof(Math) === "object", "typeof(Math) is not object");
97 ok(typeof(String.prototype) === "object", "typeof(String.prototype) is not object");
98 ok(typeof(testFunc1) === "function", "typeof(testFunc1) is not function");
99 ok(typeof(String) === "function", "typeof(String) is not function");
100 ok(typeof(ScriptEngine) === "function", "typeof(ScriptEngine) is not function");
101 ok(typeof(this) === "object", "typeof(this) is not object");
103 ok(testFunc1(true, "test") === true, "testFunc1 not returned true");
105 var obj1 = new Object();
106 ok(typeof(obj1) === "object", "typeof(obj1) is not object");
107 obj1.test = true;
108 obj1.func = function () {
109     ok(this === obj1, "this is not obj1");
110     ok(this.test === true, "this.test is not true");
111     ok(arguments.length === 1, "arguments.length is not 1");
112     ok(arguments["0"] === true, "arguments[0] is not true");
114     return "test";
117 ok(obj1.func(true) === "test", "obj1.func(true) is not \"test\"");
119 function testConstr1() {
120     this.var1 = 1;
122     ok(this !== undefined, "this is undefined");
123     ok(arguments.length === 1, "arguments.length is not 1");
124     ok(arguments["0"] === true, "arguments[0] is not 1");
126     return false;
129 testConstr1.prototype.pvar = 1;
131 var obj2 = new testConstr1(true);
132 ok(typeof(obj2) === "object", "typeof(obj2) is not object");
133 ok(obj2.pvar === 1, "obj2.pvar is not 1");
135 testConstr1.prototype.pvar = 2;
136 ok(obj2.pvar === 2, "obj2.pvar is not 2");
138 obj2.pvar = 3;
139 testConstr1.prototype.pvar = 1;
140 ok(obj2.pvar === 3, "obj2.pvar is not 3");
142 var obj3 = new Object;
143 ok(typeof(obj3) === "object", "typeof(obj3) is not object");
145 for(var iter in "test")
146     ok(false, "unexpected forin call, test = " + iter);
148 for(var iter in null)
149     ok(false, "unexpected forin call, test = " + iter);
151 for(var iter in false)
152     ok(false, "unexpected forin call, test = " + iter);
154 tmp = 0;
155 if(true)
156     tmp = 1;
157 else
158     ok(false, "else evaluated");
159 ok(tmp === 1, "tmp !== 1, if not evaluated?");
161 tmp = 0;
162 if(1 === 0)
163     ok(false, "if evaluated");
164 else
165     tmp = 1;
166 ok(tmp === 1, "tmp !== 1, if not evaluated?");
168 if(false)
169     ok(false, "if(false) evaluated");
171 tmp = 0;
172 if(true)
173     tmp = 1;
174 ok(tmp === 1, "tmp !== 1, if(true) not evaluated?");
176 var obj3 = { prop1: 1,  prop2: typeof(false) };
177 ok(obj3.prop1 === 1, "obj3.prop1 is not 1");
178 ok(obj3.prop2 === "boolean", "obj3.prop2 is not \"boolean\"");
181     var blockVar = 1;
182     blockVar = 2;
184 ok(blockVar === 2, "blockVar !== 2");
186 ok((true ? 1 : 2) === 1, "conditional expression true is not 1");
187 ok((0 === 2 ? 1 : 2) === 2, "conditional expression true is not 2");
189 ok(getVT(undefined) === "VT_EMPTY", "getVT(undefined) is not VT_EMPTY");
190 ok(getVT(null) === "VT_NULL", "getVT(null) is not VT_NULL");
191 ok(getVT(0) === "VT_I4", "getVT(0) is not VT_I4");
192 ok(getVT(0.5) === "VT_R8", "getVT(1.5) is not VT_R8");
193 ok(getVT("test") === "VT_BSTR", "getVT(\"test\") is not VT_BSTR");
194 ok(getVT(Math) === "VT_DISPATCH", "getVT(Math) is not VT_DISPATCH");
195 ok(getVT(false) === "VT_BOOL", "getVT(false) is not VT_BOOL");
197 tmp = 2+2;
198 ok(tmp === 4, "2+2 !== 4");
199 ok(getVT(tmp) === "VT_I4", "getVT(2+2) !== VT_I4");
201 tmp = 2+2.5;
202 ok(tmp === 4.5, "2+2.5 !== 4.5");
203 ok(getVT(tmp) === "VT_R8", "getVT(2+2.5) !== VT_R8");
205 tmp = 1.5+2.5;
206 ok(tmp === 4, "1.4+2.5 !== 4");
207 ok(getVT(tmp) === "VT_I4", "getVT(1.5+2.5) !== VT_I4");
209 tmp = 4-2;
210 ok(tmp === 2, "4-2 !== 2");
211 ok(getVT(tmp) === "VT_I4", "getVT(4-2) !== VT_I4");
213 tmp = 4.5-2;
214 ok(tmp === 2.5, "4.5-2 !== 2.5");
215 ok(getVT(tmp) === "VT_R8", "getVT(4-2) !== VT_R8");
217 tmp = -2;
218 ok(tmp === 0-2, "-2 !== 0-2");
219 ok(getVT(tmp) === "VT_I4", "getVT(-2) !== VT_I4");
221 tmp = 2*3;
222 ok(tmp === 6, "2*3 !== 6");
223 ok(getVT(tmp) === "VT_I4", "getVT(2*3) !== VT_I4");
225 tmp = 2*3.5;
226 ok(tmp === 7, "2*3.5 !== 7");
227 ok(getVT(tmp) === "VT_I4", "getVT(2*3.5) !== VT_I4");
229 tmp = 2.5*3.5;
230 ok(tmp === 8.75, "2.5*3.5 !== 8.75");
231 ok(getVT(tmp) === "VT_R8", "getVT(2.5*3.5) !== VT_R8");
233 tmp = 4/2;
234 ok(tmp === 2, "4/2 !== 2");
235 ok(getVT(tmp) === "VT_I4", "getVT(4/2) !== VT_I4");
237 tmp = 4.5/1.5;
238 ok(tmp === 3, "4.5/1.5 !== 3");
239 ok(getVT(tmp) === "VT_I4", "getVT(4.5/1.5) !== VT_I4");
241 tmp = 3/2;
242 ok(tmp === 1.5, "3/2 !== 1.5");
243 ok(getVT(tmp) === "VT_R8", "getVT(3/2) !== VT_R8");
245 tmp = "ab" + "cd";
246 ok(tmp === "abcd", "\"ab\" + \"cd\" !== \"abcd\"");
248 tmp = 1;
249 ok((tmp += 1) === 2, "tmp += 1 !== 2");
250 ok(tmp === 2, "tmp !== 2");
252 tmp = 2;
253 ok((tmp -= 1) === 1, "tmp -= 1 !== 1");
254 ok(tmp === 1, "tmp !=== 1");
256 tmp = 2;
257 ok((tmp *= 1.5) === 3, "tmp *= 1.5 !== 3");
258 ok(tmp === 3, "tmp !=== 3");
260 tmp = 5;
261 ok((tmp /= 2) === 2.5, "tmp /= 2 !== 2.5");
262 ok(tmp === 2.5, "tmp !=== 2.5");
264 tmp = 8;
265 ok((tmp <<= 1) === 16, "tmp <<= 1 !== 16");
267 tmp = 8;
268 ok((tmp >>= 1) === 4, "tmp >>= 1 !== 4");
270 tmp = 8;
271 ok((tmp >>>= 1) === 4, "tmp >>>= 1 !== 4");
273 tmp = 3 || ok(false, "second or expression called");
274 ok(tmp === 3, "3 || (...) is not 3");
276 tmp = false || 2;
277 ok(tmp === 2, "false || 2 is not 2");
279 tmp = 0 && ok(false, "second and expression called");
280 ok(tmp === 0, "0 && (...) is not 0");
282 tmp = true && "test";
283 ok(tmp === "test", "true && \"test\" is not \"test\"");
285 tmp = true && 0;
286 ok(tmp === 0, "true && 0 is not 0");
288 tmp = 3 | 4;
289 ok(tmp === 7, "3 | 4 !== 7");
290 ok(getVT(tmp) === "VT_I4", "getVT(3|4) = " + getVT(tmp));
292 tmp = 3.5 | 0;
293 ok(tmp === 3, "3.5 | 0 !== 3");
294 ok(getVT(tmp) === "VT_I4", "getVT(3.5|0) = " + getVT(tmp));
296 tmp = -3.5 | 0;
297 ok(tmp === -3, "-3.5 | 0 !== -3");
298 ok(getVT(tmp) === "VT_I4", "getVT(3.5|0) = " + getVT(tmp));
300 tmp = 10;
301 ok((tmp |= 0x10) === 26, "tmp(10) |= 0x10 !== 26");
302 ok(getVT(tmp) === "VT_I4", "getVT(tmp |= 10) = " + getVT(tmp));
304 tmp = 3 & 5;
305 ok(tmp === 1, "3 & 5 !== 1");
306 ok(getVT(tmp) === "VT_I4", "getVT(3|5) = " + getVT(tmp));
308 tmp = 3.5 & 0xffff;
309 ok(tmp === 3, "3.5 & 0xffff !== 3 ");
310 ok(getVT(tmp) === "VT_I4", "getVT(3.5&0xffff) = " + getVT(tmp));
312 tmp = (-3.5) & 0xffffffff;
313 ok(tmp === -3, "-3.5 & 0xffff !== -3");
314 ok(getVT(tmp) === "VT_I4", "getVT(3.5&0xffff) = " + getVT(tmp));
316 tmp = 2 << 3;
317 ok(tmp === 16, "2 << 3 = " + tmp);
319 tmp = 2 << 35;
320 ok(tmp === 16, "2 << 35 = " + tmp);
322 tmp = 8 >> 2;
323 ok(tmp === 2, "8 >> 2 = " + tmp);
325 tmp = -64 >> 4;
326 ok(tmp === -4, "-64 >> 4 = " + tmp);
328 tmp = 8 >>> 2;
329 ok(tmp === 2, "8 >> 2 = " + tmp);
331 tmp = -64 >>> 4;
332 ok(tmp === 0x0ffffffc, "-64 >>> 4 = " + tmp);
334 tmp = 10;
335 ok((tmp &= 8) === 8, "tmp(10) &= 8 !== 8");
336 ok(getVT(tmp) === "VT_I4", "getVT(tmp &= 8) = " + getVT(tmp));
338 tmp = 0xf0f0^0xff00;
339 ok(tmp === 0x0ff0, "0xf0f0^0xff00 !== 0x0ff0");
340 ok(getVT(tmp) === "VT_I4", "getVT(0xf0f0^0xff00) = " + getVT(tmp));
342 tmp = 5;
343 ok((tmp ^= 3) === 6, "tmp(5) ^= 3 !== 6");
344 ok(getVT(tmp) === "VT_I4", "getVT(tmp ^= 3) = " + getVT(tmp));
346 tmp = ~1;
347 ok(tmp === -2, "~1 !== -2");
348 ok(getVT(tmp) === "VT_I4", "getVT(~1) = " + getVT(tmp));
350 ok((3,4) === 4, "(3,4) !== 4");
352 ok(+3 === 3, "+3 !== 3");
353 ok(+true === 1, "+true !== 1");
354 ok(+false === 0, "+false !== 0");
355 ok(+null === 0, "+null !== 0");
356 ok(+"0" === 0, "+'0' !== 0");
357 ok(+"3" === 3, "+'3' !== 3");
358 ok(+"-3" === -3, "+'-3' !== -3");
359 ok(+"0xff" === 255, "+'0xff' !== 255");
360 ok(+"3e3" === 3000, "+'3e3' !== 3000");
362 ok("" + 0 === "0", "\"\" + 0 !== \"0\"");
363 ok("" + 123 === "123", "\"\" + 123 !== \"123\"");
364 ok("" + (-5) === "-5", "\"\" + (-5) !== \"-5\"");
365 ok("" + null === "null", "\"\" + null !== \"null\"");
366 ok("" + undefined === "undefined", "\"\" + undefined !== \"undefined\"");
367 ok("" + true === "true", "\"\" + true !== \"true\"");
368 ok("" + false === "false", "\"\" + false !== \"false\"");
369 ok("" + 0.5 === "0.5", "'' + 0.5 = " + 0.5);
370 ok("" + (-0.5432) === "-0.5432", "'' + (-0.5432) = " + (-0.5432));
372 ok(1 < 3.4, "1 < 3.4 failed");
373 ok(!(3.4 < 1), "3.4 < 1");
374 ok("abc" < "abcd", "abc < abcd failed");
375 ok("abcd" < "abce", "abce < abce failed");
376 ok("" < "x", "\"\" < \"x\" failed");
377 ok(!(0 < 0), "0 < 0");
379 ok(1 <= 3.4, "1 <= 3.4 failed");
380 ok(!(3.4 <= 1), "3.4 <= 1");
381 ok("abc" <= "abcd", "abc <= abcd failed");
382 ok("abcd" <= "abce", "abce <= abce failed");
383 ok("" <= "x", "\"\" <= \"x\" failed");
384 ok(0 <= 0, "0 <= 0 failed");
386 ok(3.4 > 1, "3.4 > 1 failed");
387 ok(!(1 > 3.4), "1 > 3.4");
388 ok("abcd" > "abc", "abc > abcd failed");
389 ok("abce" > "abcd", "abce > abce failed");
390 ok("x" > "", "\"x\" > \"\" failed");
391 ok(!(0 > 0), "0 > 0");
393 ok(3.4 >= 1, "3.4 >= 1 failed");
394 ok(!(1 >= 3.4), "1 >= 3.4");
395 ok("abcd" >= "abc", "abc >= abcd failed");
396 ok("abce" >= "abcd", "abce >= abce failed");
397 ok("x" >= "", "\"x\" >= \"\" failed");
398 ok(0 >= 0, "0 >= 0");
400 tmp = 1;
401 ok(++tmp === 2, "++tmp (1) is not 2");
402 ok(tmp === 2, "incremented tmp is not 2");
403 ok(--tmp === 1, "--tmp (2) is not 1");
404 ok(tmp === 1, "decremented tmp is not 1");
405 ok(tmp++ === 1, "tmp++ (1) is not 1");
406 ok(tmp === 2, "incremented tmp(1) is not 2");
407 ok(tmp-- === 2, "tmp-- (2) is not 2");
408 ok(tmp === 1, "decremented tmp is not 1");
410 String.prototype.test = true;
411 ok("".test === true, "\"\".test is not true");
413 Boolean.prototype.test = true;
414 ok(true.test === true, "true.test is not true");
416 Number.prototype.test = true;
417 ok((0).test === true, "(0).test is not true");
418 ok((0.5).test === true, "(0.5).test is not true");
420 var state = "";
421 try {
422     ok(state === "", "try: state = " + state);
423     state = "try";
424 }catch(ex) {
425     ok(false, "unexpected catch");
427 ok(state === "try", "state = " + state + " expected try");
429 state = "";
430 try {
431     ok(state === "", "try: state = " + state);
432     state = "try";
433 }finally {
434     ok(state === "try", "funally: state = " + state);
435     state = "finally";
437 ok(state === "finally", "state = " + state + " expected finally");
439 state = "";
440 try {
441     ok(state === "", "try: state = " + state);
442     state = "try";
443 }catch(ex) {
444     ok(false, "unexpected catch");
445 }finally {
446     ok(state === "try", "funally: state = " + state);
447     state = "finally";
449 ok(state === "finally", "state = " + state + " expected finally");
451 var state = "";
452 try {
453     ok(state === "", "try: state = " + state);
454     state = "try";
455     throw "except";
456 }catch(ex) {
457     ok(state === "try", "catch: state = " + state);
458     ok(ex === "except", "ex is not \"except\"");
459     state = "catch";
461 ok(state === "catch", "state = " + state + " expected catch");
463 var state = "";
464 try {
465     ok(state === "", "try: state = " + state);
466     state = "try";
467     throw true;
468 }catch(ex) {
469     ok(state === "try", "catch: state = " + state);
470     ok(ex === true, "ex is not true");
471     state = "catch";
472 }finally {
473     ok(state === "catch", "funally: state = " + state);
474     state = "finally";
476 ok(state === "finally", "state = " + state + " expected finally");
478 var state = "";
479 try {
480     ok(state === "", "try: state = " + state);
481     state = "try";
482     try { throw true; } finally {}
483 }catch(ex) {
484     ok(state === "try", "catch: state = " + state);
485     ok(ex === true, "ex is not true");
486     state = "catch";
487 }finally {
488     ok(state === "catch", "funally: state = " + state);
489     state = "finally";
491 ok(state === "finally", "state = " + state + " expected finally");
493 var state = "";
494 try {
495     ok(state === "", "try: state = " + state);
496     state = "try";
497     try { throw "except"; } catch(ex) { throw true; }
498 }catch(ex) {
499     ok(state === "try", "catch: state = " + state);
500     ok(ex === true, "ex is not true");
501     state = "catch";
502 }finally {
503     ok(state === "catch", "funally: state = " + state);
504     state = "finally";
506 ok(state === "finally", "state = " + state + " expected finally");
508 function throwFunc(x) {
509     throw x;
512 var state = "";
513 try {
514     ok(state === "", "try: state = " + state);
515     state = "try";
516     throwFunc(true);
517 }catch(ex) {
518     ok(state === "try", "catch: state = " + state);
519     ok(ex === true, "ex is not true");
520     state = "catch";
521 }finally {
522     ok(state === "catch", "funally: state = " + state);
523     state = "finally";
525 ok(state === "finally", "state = " + state + " expected finally");
527 state = "";
528 switch(1) {
529 case "1":
530     ok(false, "unexpected case \"1\"");
531 case 1:
532     ok(state === "", "case 1: state = " + state);
533     state = "1";
534 default:
535     ok(state === "1", "default: state = " + state);
536     state = "default";
537 case false:
538     ok(state === "default", "case false: state = " + state);
539     state = "false";
541 ok(state === "false", "state = " + state);
543 state = "";
544 switch("") {
545 case "1":
546 case 1:
547     ok(false, "unexpected case 1");
548 default:
549     ok(state === "", "default: state = " + state);
550     state = "default";
551 case false:
552     ok(state === "default", "case false: state = " + state);
553     state = "false";
555 ok(state === "false", "state = " + state);
557 state = "";
558 switch(1) {
559 case "1":
560     ok(false, "unexpected case \"1\"");
561 case 1:
562     ok(state === "", "case 1: state = " + state);
563     state = "1";
564 default:
565     ok(state === "1", "default: state = " + state);
566     state = "default";
567     break;
568 case false:
569     ok(false, "unexpected case false");
571 ok(state === "default", "state = " + state);
573 tmp = eval("1");
574 ok(tmp === 1, "eval(\"1\") !== 1");
575 eval("{ ok(tmp === 1, 'eval: tmp !== 1'); } tmp = 2;");
576 ok(tmp === 2, "tmp !== 2");
578 ok(eval(false) === false, "eval(false) !== false");
579 ok(eval() === undefined, "eval() !== undefined");
581 tmp = eval("1", "2");
582 ok(tmp === 1, "eval(\"1\", \"2\") !== 1");
584 var state = "";
585 try {
586     ok(state === "", "try: state = " + state);
587     state = "try";
588     eval("throwFunc(true);");
589 }catch(ex) {
590     ok(state === "try", "catch: state = " + state);
591     ok(ex === true, "ex is not true");
592     state = "catch";
593 }finally {
594     ok(state === "catch", "funally: state = " + state);
595     state = "finally";
597 ok(state === "finally", "state = " + state + " expected finally");
599 tmp = [,,1,2,,,true];
600 ok(tmp.length === 7, "tmp.length !== 7");
601 ok(tmp["0"] === undefined, "tmp[0] is not undefined");
602 ok(tmp["3"] === 2, "tmp[3] !== 2");
603 ok(tmp["6"] === true, "tmp[6] !== true");
604 ok(tmp[2] === 1, "tmp[2] !== 1");
606 ok([1,].length === 2, "[1,].length !== 2");
608 tmp = 0;
609 while(tmp < 4) {
610     ok(tmp < 4, "tmp >= 4");
611     tmp++;
613 ok(tmp === 4, "tmp !== 4");
615 tmp = 0;
616 while(true) {
617     ok(tmp < 4, "tmp >= 4");
618     tmp++;
619     if(tmp === 4) {
620         break;
621         ok(false, "break did not break");
622     }
624 ok(tmp === 4, "tmp !== 4");
626 tmp = 0;
627 do {
628     ok(tmp < 4, "tmp >= 4");
629     tmp++;
630 } while(tmp < 4);
631 ok(tmp === 4, "tmp !== 4");
633 tmp = 0;
634 do {
635     ok(tmp === 0, "tmp !=== 0");
636     tmp++;
637 } while(false);
638 ok(tmp === 1, "tmp !== 1");
640 tmp = 0;
641 while(tmp < 4) {
642     tmp++;
643     if(tmp === 2) {
644         continue;
645         ok(false, "break did not break");
646     }
647     ok(tmp <= 4 && tmp != 2, "tmp = " + tmp);
649 ok(tmp === 4, "tmp !== 4");
651 for(tmp=0; tmp < 4; tmp++)
652     ok(tmp < 4, "tmp = " + tmp);
653 ok(tmp === 4, "tmp !== 4");
655 for(tmp=0; tmp < 4; tmp++) {
656     if(tmp === 2)
657         break;
658     ok(tmp < 2, "tmp = " + tmp);
660 ok(tmp === 2, "tmp !== 2");
662 for(tmp=0; tmp < 4; tmp++) {
663     if(tmp === 2)
664         continue;
665     ok(tmp < 4 && tmp != 2, "tmp = " + tmp);
667 ok(tmp === 4, "tmp !== 4");
669 for(var fi=0; fi < 4; fi++)
670     ok(fi < 4, "fi = " + fi);
671 ok(fi === 4, "fi !== 4");
673 ok((void 1) === undefined, "(void 1) !== undefined");
675 var inobj = new Object();
677 for(var iter in inobj)
678     ok(false, "unexpected iter = " + iter);
680 inobj.test = true;
681 tmp = 0;
682 for(iter in inobj) {
683     ok(iter == "test", "unexpected iter = " + iter);
684     tmp++;
686 ok(tmp === 1, "for..in tmp = " + tmp);
688 function forinTestObj() {}
690 forinTestObj.prototype.test3 = true;
692 var arr = new Array();
693 inobj = new forinTestObj();
694 inobj.test1 = true;
695 inobj.test2 = true;
697 tmp = 0;
698 for(iter in inobj) {
699     arr[iter] = true;
700     tmp++;
703 ok(tmp === 3, "for..in tmp = " + tmp);
704 ok(arr["test1"] === true, "arr[test1] !== true");
705 ok(arr["test2"] === true, "arr[test2] !== true");
706 ok(arr["test3"] === true, "arr[test3] !== true");
708 tmp = new Object();
709 tmp.test = false;
710 ok((delete tmp.test) === true, "delete returned false");
711 ok(typeof(tmp.test) === "undefined", "tmp.test type = " + typeof(tmp.test));
712 for(iter in tmp)
713     ok(false, "tmp has prop " + iter);
715 tmp.testWith = true;
716 with(tmp)
717     ok(testWith === true, "testWith !== true");
719 reportSuccess();