source: src/Parser/TypedefTable.h @ 7fdb94e

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change on this file since 7fdb94e was 7fdb94e, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

rewrite TypedefTable?

  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[b87a5ed]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[be9288a]7// TypedefTable.h --
[b87a5ed]8//
[7fdb94e]9// Author           : Peter A. Buhr
[b87a5ed]10// Created On       : Sat May 16 15:24:36 2015
11// Last Modified By : Peter A. Buhr
[7fdb94e]12// Last Modified On : Mon May 21 20:28:01 2018
13// Update Count     : 76
[b87a5ed]14//
15
[6b0b624]16#pragma once
[51b7345]17
[7fdb94e]18#include <string>                                                                               // for string
[51b7345]19
[7fdb94e]20#include "Common/ScopedMap.h"                                                   // for ScopedMap
[be9288a]21#include "ParserTypes.h"
[7fdb94e]22#include "parser.hh"                                                                    // for IDENTIFIER, TYPEDEFname, TYPEGENname
[984dce6]23
[c8ffe20b]24class TypedefTable {
[51b7345]25  public:
[984dce6]26        enum kind_t { ID = IDENTIFIER, TD = TYPEDEFname, TG = TYPEGENname };
[51b7345]27  private:
[7fdb94e]28        typedef ScopedMap< std::string, kind_t > KindTable;
29        KindTable kindTable;   
[51b7345]30  public:
[7fdb94e]31        ~TypedefTable();
[45161b4d]32
[7fdb94e]33        bool exists( const std::string & identifier );
34        int isKind( const std::string & identifier ) const;
35        void changeKind( const std::string & identifier, kind_t kind );
36        void makeTypedef( const std::string & name );
37        void addToEnclosingScope( const std::string & identifier, kind_t kind );
[be9288a]38
[b87a5ed]39        void enterScope();
40        void leaveScope();
[7fdb94e]41}; // TypedefTable
[51b7345]42
[b87a5ed]43// Local Variables: //
44// tab-width: 4 //
45// mode: c++ //
46// compile-command: "make install" //
47// End: //
Note: See TracBrowser for help on using the repository browser.