File: MyNode.java

package info (click to toggle)
javacc4 4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,664 kB
  • sloc: java: 16,340; xml: 543; sh: 25; makefile: 18
file content (14 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public class MyNode
{
  /** Symbol table */
  protected static java.util.Hashtable symtab = new java.util.Hashtable();

  /** Stack for calculations. */
  protected static Object[] stack = new Object[1024];
  protected static int top = -1;

  public void interpret()
  {
     throw new UnsupportedOperationException(); // It better not come here.
  }
}