source: src/Parser/TypedefTable.h@ 46fa473

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum with_gc
Last change on this file since 46fa473 was ecae5860, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

more push/pop updates

  • Property mode set to 100644
File size: 1.3 KB
Line 
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//
7// TypedefTable.h --
8//
9// Author : Peter A. Buhr
10// Created On : Sat May 16 15:24:36 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu May 31 23:23:47 2018
13// Update Count : 83
14//
15
16#pragma once
17
18#include <string> // for string
19
20#include "Common/ScopedMap.h" // for ScopedMap
21#include "ParserTypes.h"
22#include "parser.hh" // for IDENTIFIER, TYPEDEFname, TYPEGENname
23
24class TypedefTable {
25 typedef ScopedMap< std::string, int > KindTable;
26 KindTable kindTable;
27 public:
28 ~TypedefTable();
29
30 bool exists( const std::string & identifier );
31 int isKind( const std::string & identifier ) const;
32 void changeKind( const std::string & identifier, int kind );
33 void makeTypedef( const std::string & name );
34 void addToScope( const std::string & identifier, int kind, const char * );
35 void addToEnclosingScope( const std::string & identifier, int kind, const char * );
36
37 void enterScope();
38 void leaveScope();
39
40 void print( void ) const;
41}; // TypedefTable
42
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.