Object-oriented Parser System
v3.6

oops3
Interface Symbols

All Known Subinterfaces:
Scanner
All Known Implementing Classes:
Build, Dump, Follow, Gen, Gl.yyLex, Grammar, Lambda.yyLex, LL1, Lookahead, Main, MopsGen, Observe, Recognize, Recursive, Scheme.yyLex, Utils, Visitor, yyLex

public interface Symbols

common symbol definitions.


Field Summary
static int badInput
          symbol: represents unrecognizable input.
static int endOfFile
          symbol: represents the end of input to the scanner.
static int firstSymbol
          ParserFactory will assign the symbol values beginning with this one.
static int noInput
          symbol: represents the fact in a lookahead set that no input is acceptable.
 

Field Detail

badInput

static final int badInput
symbol: represents unrecognizable input.

See Also:
Constant Field Values

noInput

static final int noInput
symbol: represents the fact in a lookahead set that no input is acceptable.

See Also:
Constant Field Values

endOfFile

static final int endOfFile
symbol: represents the end of input to the scanner.

See Also:
Constant Field Values

firstSymbol

static final int firstSymbol
ParserFactory will assign the symbol values beginning with this one.

See Also:
Constant Field Values


(c) 2008 Axel T. Schreiner