home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pccts.zip / pccts / BUGS120 next >
Text File  |  1994-03-31  |  876b  |  32 lines

  1.  
  2.  
  3.  
  4.                 B U G   L i s t   1 . 2 0
  5.  
  6.                       April 1, 1994
  7.  
  8. [1]    The following grammar fragment should give an ambiguity warning
  9.     but does not:
  10.  
  11.     c : ( <<p1>>? A | <<p4>>? B | B)* <<p3>>? B
  12.       ;
  13.  
  14. [2]    ANTLR generates a warning for the following situation, but
  15.     it should really be an anachronism meaning "otherwise":
  16.  
  17.     if  :   "if" expr "then" stat
  18.         |   .       <<fprintf(stderr, "malformed if-statement");>>
  19.         ;
  20.  
  21. [3]    (..)? in C++ mode do not work yet when using DLG-based scanners.
  22.  
  23. [4]    Token pointers ($i's) are not set properly in -gk demand lookahead
  24.     mode when generating C++ output.  The infinite line number stuff
  25.     won't work either in C++ mode.
  26.  
  27. [5]    Combination of LL(1) AND syntactic AND semantic predicates does
  28.     not see to work well.
  29.  
  30. [6]    There is a bug in the predicate context computation so that
  31.     "-prc on" ANTLR option may not work.
  32.