File: Ast.java

package info (click to toggle)
jikespg 1.3-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,312 kB
  • ctags: 1,360
  • sloc: ansic: 18,064; java: 586; makefile: 225
file content (14 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// $Id: Ast.java,v 1.3 1999/11/04 14:02:18 shields Exp $
// This software is subject to the terms of the IBM Jikes Compiler
// License Agreement available at the following URL:
// http://www.ibm.com/research/jikes.
// Copyright (C) 1983, 1999, International Business Machines Corporation
// and others.  All Rights Reserved.
// You must accept the terms of that agreement to use this software.

abstract class Ast
{
    int value;
    abstract public int Value();
    abstract public String toString(LexStream lex_stream);
}