source: src/ResolvExpr/ResolveTypeof.h @ b9dae14c

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since b9dae14c was 16ba4a6, checked in by Fangren Yu <f37yu@…>, 4 years ago

factor out resolver calls in pre-resolution stage

  • Property mode set to 100644
File size: 981 bytes
RevLine 
[a32b204]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// ResolveTypeof.h --
8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 12:14:53 2015
11// Last Modified By : Peter A. Buhr
[6b0b624]12// Last Modified On : Sat Jul 22 09:38:35 2017
13// Update Count     : 3
[a32b204]14//
15
[6b0b624]16#pragma once
[51b7345]17
[ea6332d]18class Type;
19namespace SymTab {
20class Indexer;
21}  // namespace SymTab
[c8e4d2f8]22namespace ast {
23        class Type;
24        class SymbolTable;
[16ba4a6]25        class ObjectDecl;
[c8e4d2f8]26}
[51b7345]27
28namespace ResolvExpr {
[a32b204]29        Type *resolveTypeof( Type*, const SymTab::Indexer &indexer );
[c8e4d2f8]30        const ast::Type * resolveTypeof( const ast::Type *, const ast::SymbolTable & );
[16ba4a6]31        const ast::ObjectDecl * fixObjectType( const ast::ObjectDecl * decl , const ast::SymbolTable & symtab );
[51b7345]32} // namespace ResolvExpr
33
[a32b204]34// Local Variables: //
35// tab-width: 4 //
36// mode: c++ //
37// compile-command: "make install" //
38// End: //
Note: See TracBrowser for help on using the repository browser.