-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpastebin
176 lines (146 loc) · 3.73 KB
/
pastebin
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
function printASTIndent(node, tabVal){
if(typeof tabVal === 'undefined'){
tabVal = 0;
}
var tabs = "";
for(var i = 0; i < tabVal; i++){
tabs= tabs.concat(" ");
}
var result = "";
for(var param in node){
if (node.hasOwnProperty(param)){
var curNode;
if(typeof node[param] === 'object' && node[param] !== null){
curNode ='\n' + printASTIndent(node[param], tabVal+1);
result +=tabs + param +":" + curNode;
}
else{
curNode = node[param];
result +=tabs + param +":" + curNode + '\n';
}
}
}
return result;
}
//var teststr = "outer 1 {{invoc {{ invoc2 | param2 }}| param }} outer2";
var teststr = "{:definition|arg1 {{{you}}} :}";
>>>>>>> cee6dc78f8c96736655e0d2c876a712a93f6aa69
var done = parse(teststr);
console.log(printASTIndent(done, 4));
//TODO investigate line feed and trim
//-----------------Question 4---------------------
function printAST(a){
return printOuter(a);
}
function printOuter(a){
var rvalue = "";
for(var rule in a){
if(!eval(rule)){
continue; //property is null, next property
}
switch(rule){
case 'INNERTEXT':
rvalue+=eval(rule);
break;
case 'templateinvoc':
rvalue+=printTInvoc(rule);
break;
case 'templatedef':
rvalue+=printTDef(rule);
break;
case 'next':
rvalue+=printOuter(rule);
}
}
return rvalue;
}
function printTInvoc(a){
var rvalue = "";
for(var rule in a){
if(!eval(rule)){
continue; //property is null, next property
}
switch(rule){
case 'itext':
rvalue+=printIText(rule);
break;
case 'targs':
rvalue+=printTArgs(rule);
break;
}
}
return "{{"+rvalue+"}}";
}
function printTDef(a){
var rvalue = "";
for(var rule in a){
if(!eval(rule)){
continue; //property is null, next property
}
switch(rule){
case 'INNERTEXT':
rvalue+=eval(rule);
break;
case 'templateinvoc':
rvalue+=printTInvoc(rule);
break;
case 'templatedef':
rvalue+=printTDef(rule);
break;
case 'next':
rvalue+=printOuter(rule);
}
}
return rvalue;
}
function printIText(a){
name : "itext",
INNERTEXT : null,
templateinvocation : null,
templatedef : null,
tparam : null,
next : null
var rvalue = "";
for(var rule in a){
if(!eval(rule)){
continue; //property is null, next property
}
switch(rule){
case 'INNERTEXT':
rvalue+=eval(rule);
break;
case 'templateinvocation':
rvalue+= printTInvoc(rule);
break;
case 'templatedef':
rvalue+= printTDef(rule);
break;
case 'tparam':
rvalue+= printTParam(rule);
break;
case 'next':
rvalue+= printIText(rule);
break;
}
}
return "?"+rvalue;
}
function printTParam(a){
}
function printTArgs(a){
var rvalue = "";
for(var rule in a){
if(!eval(rule)){
continue; //property is null, next property
}
switch(rule){
case 'itext':
rvalue+=printIText(rule);
break;
case 'next':
rvalue+=printTArgs(rule);
break;
}
}
return "|"+rvalue;
}