|
| 1 | + |
| 2 | +// Part 1 |
| 3 | + |
| 4 | +var sme = new Module.Parent(42); |
| 5 | +sme.mulVal(2); |
| 6 | +Module.print('*') |
| 7 | +Module.print(sme.getVal()); |
| 8 | + |
| 9 | +Module.print('c1'); |
| 10 | + |
| 11 | +var c1 = new Module.Child1(); |
| 12 | +Module.print(c1.getVal()); |
| 13 | +c1.mulVal(2); |
| 14 | +Module.print(c1.getVal()); |
| 15 | +Module.print(c1.getValSqr()); |
| 16 | +Module.print(c1.getValSqr(3)); |
| 17 | +Module.print(c1.getValTimes()); // default argument should be 1 |
| 18 | +Module.print(c1.getValTimes(2)); |
| 19 | + |
| 20 | +Module.print('c1 v2'); |
| 21 | + |
| 22 | +c1 = new Module.Child1(8); // now with a parameter, we should handle the overloading automatically and properly and use constructor #2 |
| 23 | +Module.print(c1.getVal()); |
| 24 | +c1.mulVal(2); |
| 25 | +Module.print(c1.getVal()); |
| 26 | +Module.print(c1.getValSqr()); |
| 27 | +Module.print(c1.getValSqr(3)); |
| 28 | + |
| 29 | +Module.print('c2') |
| 30 | + |
| 31 | +var c2 = new Module.Child2(); |
| 32 | +Module.print(c2.getVal()); |
| 33 | +c2.mulVal(2); |
| 34 | +Module.print(c2.getVal()); |
| 35 | +Module.print(c2.getValCube()); |
| 36 | +var succeeded; |
| 37 | +try { |
| 38 | + succeeded = 0; |
| 39 | + Module.print(c2.doSomethingSecret()); // should fail since private |
| 40 | + succeeded = 1; |
| 41 | +} catch(e) {} |
| 42 | +Module.print(succeeded); |
| 43 | +try { |
| 44 | + succeeded = 0; |
| 45 | + Module.print(c2.getValSqr()); // function from the other class |
| 46 | + succeeded = 1; |
| 47 | +} catch(e) {} |
| 48 | +Module.print(succeeded); |
| 49 | +try { |
| 50 | + succeeded = 0; |
| 51 | + c2.getValCube(); // sanity |
| 52 | + succeeded = 1; |
| 53 | +} catch(e) {} |
| 54 | +Module.print(succeeded); |
| 55 | + |
| 56 | +Module.Child2.prototype.printStatic(); // static calls go through the prototype |
| 57 | + |
| 58 | +// virtual function |
| 59 | +c2.virtualFunc(); |
| 60 | +Module.Child2.prototype.runVirtualFunc(c2); |
| 61 | +c2.virtualFunc2(); |
| 62 | + |
| 63 | +// extend a class from JS |
| 64 | +var c3 = new Module.Child2JS; |
| 65 | + |
| 66 | +c3.virtualFunc = function() { |
| 67 | + Module.print('*js virtualf replacement*'); |
| 68 | +}; |
| 69 | +c3.virtualFunc2 = function() { |
| 70 | + Module.print('*js virtualf2 replacement*'); |
| 71 | +}; |
| 72 | +c3.virtualFunc3 = function(x) { |
| 73 | + Module.print('*js virtualf3 replacement ' + x + '*'); |
| 74 | +}; |
| 75 | + |
| 76 | +c3.virtualFunc(); |
| 77 | +Module.Child2.prototype.runVirtualFunc(c3); |
| 78 | +c3.virtualFunc2(); |
| 79 | +c3.virtualFunc3(123); // this one is not replaced! |
| 80 | +try { |
| 81 | + c3.virtualFunc4(123); |
| 82 | +} catch(e) { |
| 83 | + Module.print('caught: ' + e); |
| 84 | +} |
| 85 | + |
| 86 | +c2.virtualFunc(); // original should remain the same |
| 87 | +Module.Child2.prototype.runVirtualFunc(c2); |
| 88 | +c2.virtualFunc2(); |
| 89 | +Module.print('*ok*'); |
| 90 | + |
| 91 | +// Part 2 |
| 92 | + |
| 93 | +var suser = new Module.StringUser("hello", 43); |
| 94 | +suser.Print(41, "world"); |
| 95 | +suser.PrintFloat(12.3456); |
| 96 | + |
| 97 | +var bv = new Module.RefUser(10); |
| 98 | +var bv2 = new Module.RefUser(11); |
| 99 | +Module.print(bv2.getValue(bv)); |
| 100 | + |
| 101 | +Module.print(typeof bv2.getMe()); |
| 102 | +Module.print(bv2.getMe().getValue(bv)); |
| 103 | +Module.print(bv2.getMe().getValue(bv2)); |
| 104 | + |
| 105 | +Module.print(typeof bv2.getCopy()); |
| 106 | +Module.print(bv2.getCopy().getValue(bv)); |
| 107 | +Module.print(bv2.getCopy().getValue(bv2)); |
| 108 | + |
| 109 | +bv2.getAnother().PrintFloat(21.12); |
| 110 | + |
| 111 | +Module.print(new Module.Inner().get()); |
| 112 | +new Module.Inner().mul(2); |
| 113 | + |
| 114 | +// |
| 115 | + |
| 116 | +Module.print('\ndone.') |
| 117 | + |
0 commit comments