1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| /* example of JS module importing a C module */
| import { Point } from "./point.so";
|
| function assert(b, str)
| {
| if (b) {
| return;
| } else {
| throw Error("assertion failed: " + str);
| }
| }
|
| class ColorPoint extends Point {
| constructor(x, y, color) {
| super(x, y);
| this.color = color;
| }
| get_color() {
| return this.color;
| }
| };
|
| function main()
| {
| var pt, pt2;
|
| pt = new Point(2, 3);
| assert(pt.x === 2);
| assert(pt.y === 3);
| pt.x = 4;
| assert(pt.x === 4);
| assert(pt.norm() == 5);
|
| pt2 = new ColorPoint(2, 3, 0xffffff);
| assert(pt2.x === 2);
| assert(pt2.color === 0xffffff);
| assert(pt2.get_color() === 0xffffff);
| }
|
| main();
|
|