ADT
        ast-experimental
        enum
        pthread-emulation
        qualifiedEnum
      
      
        
          | 
            Last change
 on this file since eb211bf was             16ba4a6f, checked in by Fangren Yu <f37yu@…>, 5 years ago           | 
        
        
          | 
             
factor out resolver calls in pre-resolution stage 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            File size:
            981 bytes
           | 
        
      
      
| 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 | // 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
 | 
|---|
| 12 | // Last Modified On : Sat Jul 22 09:38:35 2017
 | 
|---|
| 13 | // Update Count     : 3
 | 
|---|
| 14 | //
 | 
|---|
| 15 | 
 | 
|---|
| 16 | #pragma once
 | 
|---|
| 17 | 
 | 
|---|
| 18 | class Type;
 | 
|---|
| 19 | namespace SymTab {
 | 
|---|
| 20 | class Indexer;
 | 
|---|
| 21 | }  // namespace SymTab
 | 
|---|
| 22 | namespace ast {
 | 
|---|
| 23 |         class Type;
 | 
|---|
| 24 |         class SymbolTable;
 | 
|---|
| 25 |         class ObjectDecl;
 | 
|---|
| 26 | }
 | 
|---|
| 27 | 
 | 
|---|
| 28 | namespace ResolvExpr {
 | 
|---|
| 29 |         Type *resolveTypeof( Type*, const SymTab::Indexer &indexer );
 | 
|---|
| 30 |         const ast::Type * resolveTypeof( const ast::Type *, const ast::SymbolTable & );
 | 
|---|
| 31 |         const ast::ObjectDecl * fixObjectType( const ast::ObjectDecl * decl , const ast::SymbolTable & symtab );
 | 
|---|
| 32 | } // namespace ResolvExpr
 | 
|---|
| 33 | 
 | 
|---|
| 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.