home *** CD-ROM | disk | FTP | other *** search
/ Tutto per Internet / Internet.iso / soft95 / Java / espints / espinst.exe / classes / espresso / SyntaxConstants.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-02-28  |  645 b   |  21 lines

  1. package espresso;
  2.  
  3. interface SyntaxConstants {
  4.    int noPrec = -3;
  5.    int assignPrec = -2;
  6.    int condPrec = -1;
  7.    int orPrec = 0;
  8.    int andPrec = 1;
  9.    int bitorPrec = 2;
  10.    int bitxorPrec = 3;
  11.    int bitandPrec = 4;
  12.    int eqPrec = 5;
  13.    int ordPrec = 6;
  14.    int shiftPrec = 7;
  15.    int addPrec = 8;
  16.    int mulPrec = 9;
  17.    int prefixPrec = 10;
  18.    int postfixPrec = 11;
  19.    int LINESHIFT = 10;
  20. }
  21.