Ignore:
Timestamp:
Jun 29, 2017, 8:04:42 AM (7 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
2b7afbd
Parents:
9335ecc
Message:

remainder of pretty printer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/prettyprinter/lex.ll

    r9335ecc r7d4f6ed  
    11/*                               -*- Mode: C -*-
    22 *
    3  * Pretty Printer Lexer, Copyright (C) Rodolfo Gabriel Esteves and Peter A. Buhr 2001
    4  *      Permission is granted to copy this grammar and to use it within software systems.
    5  *      THIS GRAMMAR IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
     3 * Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
     4 *
     5 * The contents of this file are covered under the licence agreement in the
     6 * file "LICENCE" distributed with Cforall.
    67 *
    7  * lex.l --
     8 * lex.ll --
    89 *
    910 * Author           : Rodolfo Gabriel Esteves
    1011 * Created On       : Sat Dec 15 11:45:59 2001
    1112 * Last Modified By : Peter A. Buhr
    12  * Last Modified On : Mon Apr  8 15:48:24 2002
    13  * Update Count     : 245
     13 * Last Modified On : Wed Jun 28 22:57:17 2017
     14 * Update Count     : 253
    1415 */
    1516
     
    2122#include <string>
    2223#include <iostream>
    23 
    24 #include "parse.h"
    25 #include "yacc.tab.h"
     24using namespace std;
     25#include "parser.hh"
     26#include "parser.h"
    2627
    2728#define RETURN_TOKEN( kind ) yylval.tokenp = new Token( yytext, ws_list, kind ); return kind;
     
    164165}
    165166
    166 /* Local Variables: */
    167 /* fill-column: 100 */
    168 /* compile-command: "gmake" */
    169 /* End: */
     167// Local Variables: //
     168// mode: c++ //
     169// tab-width: 4 //
     170// compile-command: "make install" //
     171// End: //
Note: See TracChangeset for help on using the changeset viewer.