1 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 [] expr_contextTypeNames = new String [] { 13 "<undef>", 14 "Load", 15 "Store", 16 "Del", 17 "AugLoad", 18 "AugStore", 19 "Param", 20 }; 21 } 22 | Popular Tags |