push 4e98c31ec75caed2ea3040ac2e710b58ba1ca0e1
[wine/hacks.git] / dlls / jscript / tests / lang.js
blobdbe714d9fb36cf7e4de56320284b5d6a54d79084
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\"");
370 ok(1 < 3.4, "1 < 3.4 failed");
371 ok(!(3.4 < 1), "3.4 < 1");
372 ok("abc" < "abcd", "abc < abcd failed");
373 ok("abcd" < "abce", "abce < abce failed");
374 ok("" < "x", "\"\" < \"x\" failed");
375 ok(!(0 < 0), "0 < 0");
377 ok(1 <= 3.4, "1 <= 3.4 failed");
378 ok(!(3.4 <= 1), "3.4 <= 1");
379 ok("abc" <= "abcd", "abc <= abcd failed");
380 ok("abcd" <= "abce", "abce <= abce failed");
381 ok("" <= "x", "\"\" <= \"x\" failed");
382 ok(0 <= 0, "0 <= 0 failed");
384 ok(3.4 > 1, "3.4 > 1 failed");
385 ok(!(1 > 3.4), "1 > 3.4");
386 ok("abcd" > "abc", "abc > abcd failed");
387 ok("abce" > "abcd", "abce > abce failed");
388 ok("x" > "", "\"x\" > \"\" failed");
389 ok(!(0 > 0), "0 > 0");
391 ok(3.4 >= 1, "3.4 >= 1 failed");
392 ok(!(1 >= 3.4), "1 >= 3.4");
393 ok("abcd" >= "abc", "abc >= abcd failed");
394 ok("abce" >= "abcd", "abce >= abce failed");
395 ok("x" >= "", "\"x\" >= \"\" failed");
396 ok(0 >= 0, "0 >= 0");
398 tmp = 1;
399 ok(++tmp === 2, "++tmp (1) is not 2");
400 ok(tmp === 2, "incremented tmp is not 2");
401 ok(--tmp === 1, "--tmp (2) is not 1");
402 ok(tmp === 1, "decremented tmp is not 1");
403 ok(tmp++ === 1, "tmp++ (1) is not 1");
404 ok(tmp === 2, "incremented tmp(1) is not 2");
405 ok(tmp-- === 2, "tmp-- (2) is not 2");
406 ok(tmp === 1, "decremented tmp is not 1");
408 String.prototype.test = true;
409 ok("".test === true, "\"\".test is not true");
411 Boolean.prototype.test = true;
412 ok(true.test === true, "true.test is not true");
414 Number.prototype.test = true;
415 ok((0).test === true, "(0).test is not true");
416 ok((0.5).test === true, "(0.5).test is not true");
418 var state = "";
419 try {
420     ok(state === "", "try: state = " + state);
421     state = "try";
422 }catch(ex) {
423     ok(false, "unexpected catch");
425 ok(state === "try", "state = " + state + " expected try");
427 state = "";
428 try {
429     ok(state === "", "try: state = " + state);
430     state = "try";
431 }finally {
432     ok(state === "try", "funally: state = " + state);
433     state = "finally";
435 ok(state === "finally", "state = " + state + " expected finally");
437 state = "";
438 try {
439     ok(state === "", "try: state = " + state);
440     state = "try";
441 }catch(ex) {
442     ok(false, "unexpected catch");
443 }finally {
444     ok(state === "try", "funally: state = " + state);
445     state = "finally";
447 ok(state === "finally", "state = " + state + " expected finally");
449 var state = "";
450 try {
451     ok(state === "", "try: state = " + state);
452     state = "try";
453     throw "except";
454 }catch(ex) {
455     ok(state === "try", "catch: state = " + state);
456     ok(ex === "except", "ex is not \"except\"");
457     state = "catch";
459 ok(state === "catch", "state = " + state + " expected catch");
461 var state = "";
462 try {
463     ok(state === "", "try: state = " + state);
464     state = "try";
465     throw true;
466 }catch(ex) {
467     ok(state === "try", "catch: state = " + state);
468     ok(ex === true, "ex is not true");
469     state = "catch";
470 }finally {
471     ok(state === "catch", "funally: state = " + state);
472     state = "finally";
474 ok(state === "finally", "state = " + state + " expected finally");
476 var state = "";
477 try {
478     ok(state === "", "try: state = " + state);
479     state = "try";
480     try { throw true; } finally {}
481 }catch(ex) {
482     ok(state === "try", "catch: state = " + state);
483     ok(ex === true, "ex is not true");
484     state = "catch";
485 }finally {
486     ok(state === "catch", "funally: state = " + state);
487     state = "finally";
489 ok(state === "finally", "state = " + state + " expected finally");
491 var state = "";
492 try {
493     ok(state === "", "try: state = " + state);
494     state = "try";
495     try { throw "except"; } catch(ex) { throw true; }
496 }catch(ex) {
497     ok(state === "try", "catch: state = " + state);
498     ok(ex === true, "ex is not true");
499     state = "catch";
500 }finally {
501     ok(state === "catch", "funally: state = " + state);
502     state = "finally";
504 ok(state === "finally", "state = " + state + " expected finally");
506 function throwFunc(x) {
507     throw x;
510 var state = "";
511 try {
512     ok(state === "", "try: state = " + state);
513     state = "try";
514     throwFunc(true);
515 }catch(ex) {
516     ok(state === "try", "catch: state = " + state);
517     ok(ex === true, "ex is not true");
518     state = "catch";
519 }finally {
520     ok(state === "catch", "funally: state = " + state);
521     state = "finally";
523 ok(state === "finally", "state = " + state + " expected finally");
525 state = "";
526 switch(1) {
527 case "1":
528     ok(false, "unexpected case \"1\"");
529 case 1:
530     ok(state === "", "case 1: state = " + state);
531     state = "1";
532 default:
533     ok(state === "1", "default: state = " + state);
534     state = "default";
535 case false:
536     ok(state === "default", "case false: state = " + state);
537     state = "false";
539 ok(state === "false", "state = " + state);
541 state = "";
542 switch("") {
543 case "1":
544 case 1:
545     ok(false, "unexpected case 1");
546 default:
547     ok(state === "", "default: state = " + state);
548     state = "default";
549 case false:
550     ok(state === "default", "case false: state = " + state);
551     state = "false";
553 ok(state === "false", "state = " + state);
555 state = "";
556 switch(1) {
557 case "1":
558     ok(false, "unexpected case \"1\"");
559 case 1:
560     ok(state === "", "case 1: state = " + state);
561     state = "1";
562 default:
563     ok(state === "1", "default: state = " + state);
564     state = "default";
565     break;
566 case false:
567     ok(false, "unexpected case false");
569 ok(state === "default", "state = " + state);
571 tmp = eval("1");
572 ok(tmp === 1, "eval(\"1\") !== 1");
573 eval("{ ok(tmp === 1, 'eval: tmp !== 1'); } tmp = 2;");
574 ok(tmp === 2, "tmp !== 2");
576 ok(eval(false) === false, "eval(false) !== false");
577 ok(eval() === undefined, "eval() !== undefined");
579 tmp = eval("1", "2");
580 ok(tmp === 1, "eval(\"1\", \"2\") !== 1");
582 var state = "";
583 try {
584     ok(state === "", "try: state = " + state);
585     state = "try";
586     eval("throwFunc(true);");
587 }catch(ex) {
588     ok(state === "try", "catch: state = " + state);
589     ok(ex === true, "ex is not true");
590     state = "catch";
591 }finally {
592     ok(state === "catch", "funally: state = " + state);
593     state = "finally";
595 ok(state === "finally", "state = " + state + " expected finally");
597 tmp = [,,1,2,,,true];
598 ok(tmp.length === 7, "tmp.length !== 7");
599 ok(tmp["0"] === undefined, "tmp[0] is not undefined");
600 ok(tmp["3"] === 2, "tmp[3] !== 2");
601 ok(tmp["6"] === true, "tmp[6] !== true");
602 ok(tmp[2] === 1, "tmp[2] !== 1");
604 ok([1,].length === 2, "[1,].length !== 2");
606 tmp = 0;
607 while(tmp < 4) {
608     ok(tmp < 4, "tmp >= 4");
609     tmp++;
611 ok(tmp === 4, "tmp !== 4");
613 tmp = 0;
614 while(true) {
615     ok(tmp < 4, "tmp >= 4");
616     tmp++;
617     if(tmp === 4) {
618         break;
619         ok(false, "break did not break");
620     }
622 ok(tmp === 4, "tmp !== 4");
624 tmp = 0;
625 do {
626     ok(tmp < 4, "tmp >= 4");
627     tmp++;
628 } while(tmp < 4);
629 ok(tmp === 4, "tmp !== 4");
631 tmp = 0;
632 do {
633     ok(tmp === 0, "tmp !=== 0");
634     tmp++;
635 } while(false);
636 ok(tmp === 1, "tmp !== 1");
638 tmp = 0;
639 while(tmp < 4) {
640     tmp++;
641     if(tmp === 2) {
642         continue;
643         ok(false, "break did not break");
644     }
645     ok(tmp <= 4 && tmp != 2, "tmp = " + tmp);
647 ok(tmp === 4, "tmp !== 4");
649 for(tmp=0; tmp < 4; tmp++)
650     ok(tmp < 4, "tmp = " + tmp);
651 ok(tmp === 4, "tmp !== 4");
653 for(tmp=0; tmp < 4; tmp++) {
654     if(tmp === 2)
655         break;
656     ok(tmp < 2, "tmp = " + tmp);
658 ok(tmp === 2, "tmp !== 2");
660 for(tmp=0; tmp < 4; tmp++) {
661     if(tmp === 2)
662         continue;
663     ok(tmp < 4 && tmp != 2, "tmp = " + tmp);
665 ok(tmp === 4, "tmp !== 4");
667 for(var fi=0; fi < 4; fi++)
668     ok(fi < 4, "fi = " + fi);
669 ok(fi === 4, "fi !== 4");
671 ok((void 1) === undefined, "(void 1) !== undefined");
673 var inobj = new Object();
675 for(var iter in inobj)
676     ok(false, "unexpected iter = " + iter);
678 inobj.test = true;
679 tmp = 0;
680 for(iter in inobj) {
681     ok(iter == "test", "unexpected iter = " + iter);
682     tmp++;
684 ok(tmp === 1, "for..in tmp = " + tmp);
686 function forinTestObj() {}
688 forinTestObj.prototype.test3 = true;
690 var arr = new Array();
691 inobj = new forinTestObj();
692 inobj.test1 = true;
693 inobj.test2 = true;
695 tmp = 0;
696 for(iter in inobj) {
697     arr[iter] = true;
698     tmp++;
701 ok(tmp === 3, "for..in tmp = " + tmp);
702 ok(arr["test1"] === true, "arr[test1] !== true");
703 ok(arr["test2"] === true, "arr[test2] !== true");
704 ok(arr["test3"] === true, "arr[test3] !== true");
706 tmp = new Object();
707 tmp.test = false;
708 ok((delete tmp.test) === true, "delete returned false");
709 ok(typeof(tmp.test) === "undefined", "tmp.test type = " + typeof(tmp.test));
710 for(iter in tmp)
711     ok(false, "tmp has prop " + iter);
713 tmp.testWith = true;
714 with(tmp)
715     ok(testWith === true, "testWith !== true");
717 reportSuccess();