home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l216 / 2.ddi / XPARS.PRO < prev    next >
Encoding:
Text File  |  1987-03-23  |  625 b   |  15 lines

  1. /**************************************************************
  2.            Turbo Prolog Toolbox
  3.            (C) Copyright 1987 Borland International.
  4. **************************************************************/           
  5.  
  6. include "xpars.dom"     /* domain declarations for the parser */
  7. include "xpars.sca"     /* scanner called by the parser       */
  8.  
  9. predicates                  /* The generated parser requires  */
  10.   syntax_error(STRING,TOKL) /* this predicate to be declared. */
  11.  
  12. include "xpars.par"     /* parser created by the Toolbox      */
  13.  
  14. clauses
  15.   syntax_error(_,_):-write("No error detection").