-
Notifications
You must be signed in to change notification settings - Fork 0
/
jgentest.js
79 lines (65 loc) · 1.89 KB
/
jgentest.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { DSLInterpreter } from './jgen.js';
let interpreter = new DSLInterpreter({
'add': (ctx, params) => {
return params.reduce((accumulator, current) => accumulator + current, 0);
},
'mul': (ctx, params) => {
return params.reduce((accumulator, current) => accumulator * current, 1);
},
'append': (ctx, params) => {
return params.reduce((accumulator, current) => accumulator + current, '');
}
});
let dslJson = {
'add': [
1,
{ 'mul': [12, 12, 12] }
]
};
let compiled = interpreter.compile(dslJson);
console.log(interpreter.run(compiled, null));
console.assert(interpreter.run(compiled, null) === 1729);
dslJson = {
'append': [
'test1',
{ 'mul': [12, 12, 12] }
]
};
compiled = interpreter.compile(dslJson);
console.log(interpreter.run(compiled, null));
console.assert(interpreter.run(compiled, null) === 'test11728');
dslJson = [{
'append': [
'test1',
{ 'mul': [12, 12, 12] }
]
}];
compiled = interpreter.compile(dslJson);
console.log(interpreter.run(compiled, null));
console.assert(interpreter.run(compiled, null)[0] === 'test11728');
dslJson = [{
'append': [
'test1',
{ 'mul': [12, 12, 12] }
]
},
{
'add': [
{ 'mul': [9, 9, 9] },
{ 'mul': [10, 10, 10] }
]
}];
compiled = interpreter.compile(dslJson);
console.log(interpreter.run(compiled, null));
console.assert(interpreter.run(compiled, null)[0] === 'test11728');
console.assert(interpreter.run(compiled, null)[1] === 1729);
dslJson = [{
'something': [
'test1',
{ 'mul': [12, 12, 12] }
]
}];
compiled = interpreter.compile(dslJson);
console.log(JSON.stringify(interpreter.run(compiled, null)));
console.assert(interpreter.run(compiled, null)[0]['something'][0] === 'test1');
console.assert(interpreter.run(compiled, null)[0]['something'][1] === 1728);