Last change
on this file was
2908f08,
checked in by Andrew Beach <ajbeach@…>, 3 weeks ago
|
Most of ResolvExpr? was written before the new style standard. Some files updated, focus on headers.
|
-
Property mode set to
100644
|
File size:
1013 bytes
|
Rev | Line | |
---|
[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 | // |
---|
[94fa946] | 7 | // ResolveTypeof.h -- |
---|
[a32b204] | 8 | // |
---|
| 9 | // Author : Richard C. Bilson |
---|
| 10 | // Created On : Sun May 17 12:14:53 2015 |
---|
[39d8950] | 11 | // Last Modified By : Andrew Beach |
---|
| 12 | // Last Modified On : Wed Mar 16 11:33:00 2022 |
---|
| 13 | // Update Count : 4 |
---|
[a32b204] | 14 | // |
---|
| 15 | |
---|
[6b0b624] | 16 | #pragma once |
---|
[51b7345] | 17 | |
---|
[c8e4d2f8] | 18 | namespace ast { |
---|
| 19 | class Type; |
---|
[16ba4a6] | 20 | class ObjectDecl; |
---|
[c8e4d2f8] | 21 | } |
---|
[51b7345] | 22 | |
---|
| 23 | namespace ResolvExpr { |
---|
[39d8950] | 24 | |
---|
[2908f08] | 25 | struct ResolveContext; |
---|
| 26 | |
---|
| 27 | const ast::Type * resolveTypeof( const ast::Type *, const ResolveContext & ); |
---|
| 28 | const ast::Type * fixArrayType( const ast::Type *, const ResolveContext & ); |
---|
| 29 | const ast::ObjectDecl * fixObjectType( const ast::ObjectDecl * decl , const ResolveContext & ); |
---|
| 30 | const ast::ObjectDecl * fixObjectInit( const ast::ObjectDecl * decl , const ResolveContext & ); |
---|
| 31 | |
---|
[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.