01: // Autogenerated AST node
02: package org.python.parser.ast;
03:
04: import org.python.parser.SimpleNode;
05: import java.io.DataOutputStream;
06: import java.io.IOException;
07:
08: public class Yield extends stmtType {
09: public exprType value;
10:
11: public Yield(exprType value) {
12: this .value = value;
13: }
14:
15: public Yield(exprType value, SimpleNode parent) {
16: this (value);
17: this .beginLine = parent.beginLine;
18: this .beginColumn = parent.beginColumn;
19: }
20:
21: public String toString() {
22: StringBuffer sb = new StringBuffer("Yield[");
23: sb.append("value=");
24: sb.append(dumpThis(this .value));
25: sb.append("]");
26: return sb.toString();
27: }
28:
29: public void pickle(DataOutputStream ostream) throws IOException {
30: pickleThis(8, ostream);
31: pickleThis(this .value, ostream);
32: }
33:
34: public Object accept(VisitorIF visitor) throws Exception {
35: return visitor.visitYield(this );
36: }
37:
38: public void traverse(VisitorIF visitor) throws Exception {
39: if (value != null)
40: value.accept(visitor);
41: }
42:
43: }
|