SatherBlockFinishingInfo.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

Others

  1. package antlr;
  2. /* ANTLR Translator Generator
  3.  * Project led by Terence Parr at http://www.jGuru.com
  4.  * Software rights: http://www.antlr.org/RIGHTS.html
  5.  *
  6.  * $Id: //depot/code/org.antlr/release/antlr-2.7.0/antlr/SatherBlockFinishingInfo.java#1 $
  7.  */
  8. class SatherBlockFinishingInfo 
  9. {
  10.     String postscript; // what to generate to terminate block
  11.     boolean generatedSwitch;    // did block finish with "default:" of switch?
  12.     boolean generatedAnIf;
  13.     /** When generating an if or switch, end-of-token lookahead sets
  14.      *  will become the else or default clause, don't generate an
  15.      *  error clause in this case.
  16.      */
  17.     boolean needAnErrorClause;
  18.     public SatherBlockFinishingInfo() 
  19.     {
  20. postscript=null;
  21. generatedSwitch=generatedSwitch = false;
  22. needAnErrorClause = true;
  23.     }
  24.     public SatherBlockFinishingInfo( String ps, 
  25.      boolean genS, 
  26.      boolean generatedAnIf, 
  27.      boolean n ) 
  28.     {
  29. postscript = ps;
  30. generatedSwitch = genS;
  31. this.generatedAnIf = generatedAnIf;
  32. needAnErrorClause = n;
  33.     }
  34. }