source:
src/Common/Examine.hpp@
4d5c5b6a
Last change on this file since 4d5c5b6a was c92bdcc, checked in by , 17 months ago | |
---|---|
|
|
File size: 860 bytes |
Rev | Line | |
---|---|---|
[1c01c58] | 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 | // | |
[c92bdcc] | 7 | // Examine.hpp -- Helpers for examining AST code. |
[1c01c58] | 8 | // |
9 | // Author : Andrew Beach | |
10 | // Created On : Wed Sept 2 13:57 2020 | |
11 | // Last Modified By : Andrew Beach | |
[4f6dda0] | 12 | // Last Modified On : Fri Dec 10 10:28 2021 |
13 | // Update Count : 1 | |
[1c01c58] | 14 | // |
15 | ||
[4f6dda0] | 16 | #include "AST/Decl.hpp" |
[1c01c58] | 17 | |
18 | /// Check if this is a main function for a type of an aggregate kind. | |
[4f6dda0] | 19 | const ast::DeclWithType * isMainFor( |
20 | const ast::FunctionDecl * func, ast::AggregateDecl::Aggregate kind ); | |
[1c01c58] | 21 | // Returns a pointer to the parameter if true, nullptr otherwise. |
22 | ||
23 | /// Check if this function is a destructor for the given structure. | |
[4f6dda0] | 24 | bool isDestructorFor( |
25 | const ast::FunctionDecl * func, const ast::StructDecl * type ); |
Note:
See TracBrowser
for help on using the repository browser.