KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > python > parser > ast > expr_contextType


1 // Autogenerated AST node
2
package org.python.parser.ast;
3
4 public interface expr_contextType {
5     public static final int Load = 1;
6     public static final int Store = 2;
7     public static final int Del = 3;
8     public static final int AugLoad = 4;
9     public static final int AugStore = 5;
10     public static final int Param = 6;
11
12     public static final String JavaDoc[] expr_contextTypeNames = new String JavaDoc[] {
13         "<undef>",
14         "Load",
15         "Store",
16         "Del",
17         "AugLoad",
18         "AugStore",
19         "Param",
20     };
21 }
22
Popular Tags