File: AutoProcs.java

package info (click to toggle)
jasmin-sable 2.4.0-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,232 kB
  • ctags: 1,458
  • sloc: java: 9,167; xml: 109; makefile: 19; csh: 16; sh: 1
file content (391 lines) | stat: -rw-r--r-- 20,341 bytes parent folder | download | duplicates (6)
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
package scm;

import jas.*;
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmaddCPItem extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-class-addcpe expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-addcpe expects a ClassEnv for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ClassEnv)) { throw new SchemeError("jas-class-addcpe expects a ClassEnv for arg #1"); }
    ClassEnv arg0 = (tmp != null)?(ClassEnv)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-addcpe expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-addcpe expects a CP for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CP)) { throw new SchemeError("jas-class-addcpe expects a CP for arg #2"); }
    CP arg1 = (tmp != null)?(CP)(((primnode)tmp).val):null;
    arg0.addCPItem(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-class-addcpe#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmaddField extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-class-addfield expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-addfield expects a ClassEnv for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ClassEnv)) { throw new SchemeError("jas-class-addfield expects a ClassEnv for arg #1"); }
    ClassEnv arg0 = (tmp != null)?(ClassEnv)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-addfield expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-addfield expects a Var for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof Var)) { throw new SchemeError("jas-class-addfield expects a Var for arg #2"); }
    Var arg1 = (tmp != null)?(Var)(((primnode)tmp).val):null;
    arg0.addField(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-class-addfield#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmaddInterface extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-class-addinterface expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-addinterface expects a ClassEnv for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ClassEnv)) { throw new SchemeError("jas-class-addinterface expects a ClassEnv for arg #1"); }
    ClassEnv arg0 = (tmp != null)?(ClassEnv)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-addinterface expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-addinterface expects a CP for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CP)) { throw new SchemeError("jas-class-addinterface expects a CP for arg #2"); }
    CP arg1 = (tmp != null)?(CP)(((primnode)tmp).val):null;
    arg0.addInterface(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-class-addinterface#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmsetClass extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-class-setclass expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-setclass expects a ClassEnv for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ClassEnv)) { throw new SchemeError("jas-class-setclass expects a ClassEnv for arg #1"); }
    ClassEnv arg0 = (tmp != null)?(ClassEnv)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-setclass expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-setclass expects a CP for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CP)) { throw new SchemeError("jas-class-setclass expects a CP for arg #2"); }
    CP arg1 = (tmp != null)?(CP)(((primnode)tmp).val):null;
    arg0.setClass(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-class-setclass#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmsetSuperClass extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-class-setsuperclass expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-setsuperclass expects a ClassEnv for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ClassEnv)) { throw new SchemeError("jas-class-setsuperclass expects a ClassEnv for arg #1"); }
    ClassEnv arg0 = (tmp != null)?(ClassEnv)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-setsuperclass expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-setsuperclass expects a CP for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CP)) { throw new SchemeError("jas-class-setsuperclass expects a CP for arg #2"); }
    CP arg1 = (tmp != null)?(CP)(((primnode)tmp).val):null;
    arg0.setSuperClass(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-class-setsuperclass#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmaddMethod extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-class-addmethod expects 6 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-addmethod expects a ClassEnv for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ClassEnv)) { throw new SchemeError("jas-class-addmethod expects a ClassEnv for arg #1"); }
    ClassEnv arg0 = (tmp != null)?(ClassEnv)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-addmethod expects 6 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if (!(tmp instanceof Selfrep)) { throw new SchemeError("jas-class-addmethod expects a number for arg #2"); }
    short arg1 = (short)(((Selfrep)tmp).num);
    if (t == null) { throw new SchemeError("jas-class-addmethod expects 6 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof Selfrep)) { throw new SchemeError("jas-class-addmethod expects a String for arg #3"); }
    String arg2 = (tmp!=null)?((Selfrep)tmp).val:null;
    if (t == null) { throw new SchemeError("jas-class-addmethod expects 6 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof Selfrep)) { throw new SchemeError("jas-class-addmethod expects a String for arg #4"); }
    String arg3 = (tmp!=null)?((Selfrep)tmp).val:null;
    if (t == null) { throw new SchemeError("jas-class-addmethod expects 6 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-addmethod expects a CodeAttr for arg #5"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CodeAttr)) { throw new SchemeError("jas-class-addmethod expects a CodeAttr for arg #5"); }
    CodeAttr arg4 = (tmp != null)?(CodeAttr)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-addmethod expects 6 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-addmethod expects a ExceptAttr for arg #6"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ExceptAttr)) { throw new SchemeError("jas-class-addmethod expects a ExceptAttr for arg #6"); }
    ExceptAttr arg5 = (tmp != null)?(ExceptAttr)(((primnode)tmp).val):null;
    arg0.addMethod(arg1, arg2, arg3, arg4, arg5);
  return null;
  }
  public String toString()
  { return ("<#jas-class-addmethod#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmsetClassAccess extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-class-setaccess expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-setaccess expects a ClassEnv for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ClassEnv)) { throw new SchemeError("jas-class-setaccess expects a ClassEnv for arg #1"); }
    ClassEnv arg0 = (tmp != null)?(ClassEnv)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-setaccess expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if (!(tmp instanceof Selfrep)) { throw new SchemeError("jas-class-setaccess expects a number for arg #2"); }
    short arg1 = (short)(((Selfrep)tmp).num);
    arg0.setClassAccess(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-class-setaccess#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmsetSource extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-class-setsource expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-setsource expects a ClassEnv for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ClassEnv)) { throw new SchemeError("jas-class-setsource expects a ClassEnv for arg #1"); }
    ClassEnv arg0 = (tmp != null)?(ClassEnv)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-setsource expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof Selfrep)) { throw new SchemeError("jas-class-setsource expects a String for arg #2"); }
    String arg1 = (tmp!=null)?((Selfrep)tmp).val:null;
    arg0.setSource(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-class-setsource#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmwrite extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-class-write expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-write expects a ClassEnv for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ClassEnv)) { throw new SchemeError("jas-class-write expects a ClassEnv for arg #1"); }
    ClassEnv arg0 = (tmp != null)?(ClassEnv)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-class-write expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-class-write expects a scmOutputStream for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof scmOutputStream)) { throw new SchemeError("jas-class-write expects a scmOutputStream for arg #2"); }
    scmOutputStream arg1 = (tmp != null)?(scmOutputStream)(((primnode)tmp).val):null;
    arg0.write(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-class-write#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmaddException extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-exception-add expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-exception-add expects a ExceptAttr for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof ExceptAttr)) { throw new SchemeError("jas-exception-add expects a ExceptAttr for arg #1"); }
    ExceptAttr arg0 = (tmp != null)?(ExceptAttr)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-exception-add expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-exception-add expects a CP for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CP)) { throw new SchemeError("jas-exception-add expects a CP for arg #2"); }
    CP arg1 = (tmp != null)?(CP)(((primnode)tmp).val):null;
    arg0.addException(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-exception-add#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmaddInsn extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-code-addinsn expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-code-addinsn expects a CodeAttr for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CodeAttr)) { throw new SchemeError("jas-code-addinsn expects a CodeAttr for arg #1"); }
    CodeAttr arg0 = (tmp != null)?(CodeAttr)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-code-addinsn expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-code-addinsn expects a Insn for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof Insn)) { throw new SchemeError("jas-code-addinsn expects a Insn for arg #2"); }
    Insn arg1 = (tmp != null)?(Insn)(((primnode)tmp).val):null;
    arg0.addInsn(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-code-addinsn#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmsetStackSize extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-code-stack-size expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-code-stack-size expects a CodeAttr for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CodeAttr)) { throw new SchemeError("jas-code-stack-size expects a CodeAttr for arg #1"); }
    CodeAttr arg0 = (tmp != null)?(CodeAttr)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-code-stack-size expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if (!(tmp instanceof Selfrep)) { throw new SchemeError("jas-code-stack-size expects a number for arg #2"); }
    short arg1 = (short)(((Selfrep)tmp).num);
    arg0.setStackSize(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-code-stack-size#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmsetVarSize extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-code-var-size expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-code-var-size expects a CodeAttr for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CodeAttr)) { throw new SchemeError("jas-code-var-size expects a CodeAttr for arg #1"); }
    CodeAttr arg0 = (tmp != null)?(CodeAttr)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-code-var-size expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if (!(tmp instanceof Selfrep)) { throw new SchemeError("jas-code-var-size expects a number for arg #2"); }
    short arg1 = (short)(((Selfrep)tmp).num);
    arg0.setVarSize(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-code-var-size#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmsetCatchtable extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-set-catchtable expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-set-catchtable expects a CodeAttr for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CodeAttr)) { throw new SchemeError("jas-set-catchtable expects a CodeAttr for arg #1"); }
    CodeAttr arg0 = (tmp != null)?(CodeAttr)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-set-catchtable expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-set-catchtable expects a Catchtable for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof Catchtable)) { throw new SchemeError("jas-set-catchtable expects a Catchtable for arg #2"); }
    Catchtable arg1 = (tmp != null)?(Catchtable)(((primnode)tmp).val):null;
    arg0.setCatchtable(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-set-catchtable#>"); }
}
//Autogenerated by procinfo on Thu May 19 14:07:20 EDT 2005
class scmaddEntry extends Procedure implements Obj
{
  Obj apply(Cell args, Env f)
  throws Exception
  {

    Cell t = args;
    Obj tmp;
    if (t == null) { throw new SchemeError("jas-add-catch-entry expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-add-catch-entry expects a Catchtable for arg #1"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof Catchtable)) { throw new SchemeError("jas-add-catch-entry expects a Catchtable for arg #1"); }
    Catchtable arg0 = (tmp != null)?(Catchtable)(((primnode)tmp).val):null;
    if (t == null) { throw new SchemeError("jas-add-catch-entry expects 2 arguments"); }
    tmp = (t.car!=null)?t.car.eval(f):null; t = t.cdr;
    if ((tmp != null) && !(tmp instanceof primnode)) { throw new SchemeError("jas-add-catch-entry expects a CatchEntry for arg #2"); }
    if ((tmp != null) && !((((primnode)tmp).val) instanceof CatchEntry)) { throw new SchemeError("jas-add-catch-entry expects a CatchEntry for arg #2"); }
    CatchEntry arg1 = (tmp != null)?(CatchEntry)(((primnode)tmp).val):null;
    arg0.addEntry(arg1);
  return null;
  }
  public String toString()
  { return ("<#jas-add-catch-entry#>"); }
}