forked from clarkenheim/tykeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTykeBuild.js
82 lines (60 loc) · 1.84 KB
/
TykeBuild.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
80
81
82
'use strict';
const TykeBuild = function(){
this.tree = [];
};
TykeBuild.prototype.add = function(tree) {
this.tree = this.tree.concat(tree);
};
TykeBuild.prototype.getTree = function(){
return this.tree;
};
TykeBuild.prototype.bool_compare = function(left, comparison, right){
return {
type: 'bool_compare',
left: left,
comparison:comparison,
right:right
};
}
TykeBuild.prototype.bool_literal = function(symbol){
return {type:'bool', symbol:symbol};
};
TykeBuild.prototype.number_literal = function(symbol){
return {type:'number', symbol:symbol};
};
TykeBuild.prototype.string_literal = function(symbol){
return {type:'string', symbol:symbol};
};
TykeBuild.prototype.label = function(symbol){
return {type:'label', symbol:symbol};
};
TykeBuild.prototype.labels = function(label){
return {type: 'label_list', labels:[label]};
};
TykeBuild.prototype.add_label = function(label_list, label){
label_list.labels.push(label);
};
TykeBuild.prototype.args = function(arg){
return {type: 'arg_list', args:[arg]};
};
TykeBuild.prototype.add_arg = function(arg_list, arg){
label_list.args.push(arg);
};
TykeBuild.prototype.function = function(label, statements, _args){
var args = _args || {type: 'label_list', labels:[]};
return {type:'function', label:label, statements:statements, arguments:args};
};
TykeBuild.prototype.function_call = function(label, _args){
var args = _args || {type: 'arg_list', args:[]};
return {type:'function_call', label:label, args:args};
};
TykeBuild.prototype.assignment = function(label, expr){
return {type:'assignment', label:label, expr:expr};
};
TykeBuild.prototype.statement = function(statement){
return [{type:'statement', statement:statement}];
};
TykeBuild.prototype.add_statement = function(statements, statement){
return statements.concat(this.statement(statement));
};
module.exports = TykeBuild;