source: src/Common/Examine.hpp@ 0497b6ba

Last change on this file since 0497b6ba was c92bdcc, checked in by Andrew Beach <ajbeach@…>, 17 months ago

Updated the rest of the names in src/ (except for the generated files).

  • Property mode set to 100644
File size: 860 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// Examine.hpp -- Helpers for examining AST code.
8//
9// Author : Andrew Beach
10// Created On : Wed Sept 2 13:57 2020
11// Last Modified By : Andrew Beach
12// Last Modified On : Fri Dec 10 10:28 2021
13// Update Count : 1
14//
15
16#include "AST/Decl.hpp"
17
18/// Check if this is a main function for a type of an aggregate kind.
19const ast::DeclWithType * isMainFor(
20 const ast::FunctionDecl * func, ast::AggregateDecl::Aggregate kind );
21// Returns a pointer to the parameter if true, nullptr otherwise.
22
23/// Check if this function is a destructor for the given structure.
24bool isDestructorFor(
25 const ast::FunctionDecl * func, const ast::StructDecl * type );
Note: See TracBrowser for help on using the repository browser.