-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJavaTemplate.stg
127 lines (103 loc) · 2.46 KB
/
JavaTemplate.stg
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
group STTrans;
code(id,env,data,pro) ::= "<id> <\n><env> <\n><data> <\n> <pro>"
idDivision(pid,auth) ::= " // Program-ID <pid> Author <auth> ."
envDivision(src,obj) ::= " // SOURCE COMPUTER <src> OBJECT COMPUTER <obj> ."
onlyid(v) ::= " <v> "
dataDivision(vari) ::= <<
<vari ; separator=" \n ">
>>
proDivision(sec) ::= <<
<sec ; separator=" \n ">
>>
identi(id) ::= " <id> "
section(id,sta) ::= <<
#beginsection<\n>
public static void <id>()
{
<sta ; separator=" \n ">
}<\n>
#endsection
>>
hyp() ::= "_"
stat(id) ::= " #beginstatement <\n><id>;<\n> #endstatement "
performStmt(id) ::= " <id>() "
acceptStmt(id) ::= " <id>() "
initializeStmt(id) ::= <<
<id ; separator=" ">
>>
displayStmt(lit) ::= <<
System.out.println( <lit; separator=" + "> )
>>
moveStmt(from,to) ::= <<
<to ; separator=" "> <from>
>>
data1(id) ::= " <id> { "
empStr(id) ::= "#var String <id> = null ; "
str(id,val) ::= "#var String <id> = <val> ; "
empdouble(id) ::= "#var double <id> = null;"
double(id,val) ::= "#var double <id> = <val> ; "
arrbrackets(index) ::= " [<index>] "
closebracket() ::= "}"
redef(id1,id2) ::= "<id1> = <id2> ; "
gotoStmt(id) ::= "<id>();"
var(id) ::= "<id>"
rule(at) ::= "<at>"
lit(id) ::= "<id>"
exp(exp) ::= "<exp>"
comp(id) ::= "<id>"
sym(id) ::= "<id>"
bracketexp(exp) ::= "<exp>"
notexp(exp) ::= "<exp>"
boolexp(exp1,comp,exp2) ::= "<exp1> <comp> <exp2>"
andexp(exps) ::= <<
( <exps; separator=" && "> )
>>
orexp(exps) ::= <<
( <exps; separator=" || "> )
>>
multStmt(left,right,another) ::= "<another> = <left> * <right> ;"
addStmt(left,right) ::= "<right> += <left> ;"
subStmt(left,right) ::= "<right> -= <left> ;"
parseint(str) ::= " ParseInt( <str> ) "
sqlStmt(qr) ::= <<
#BEGINSQL
<qr ; separator=" \n ">
#ENDSQL <\n>
>>
hostvar(id) ::="#beginidentifier<\n><id><\n>#endidentifier"
performexitStmt(id) ::= " <id> "
performUntilStmt(id,stm) ::= <<
while ( ! ( <id> ) )
{
<stm; separator=" \n "> ) ;
}
>>
performVaryingStmt(id,cond,dig1,dig2,stm) ::= <<
id = dig1 ;
while ( ! ( <cond> ) )
{
<stm; separator=" \n "> ;
id += dig2;
}
>>
ifexp(cond,stm,elif,elsess) ::= <<
if <cond>
{
<stm; separator="\n ">
}
<elif; separator="\n ">
<elsess; separator="\n ">
>>
elseifexp(cond,stm) ::= <<
else if <cond>
{
<stm; separator=" \n ">
}
>>
elseexp(stm) ::= <<
else { <stm; separator=" \n "> }
>>
stamt(st) ::= "<st>"
sections(secs) ::= <<
<secs; separator=" \n ">
>>