source: src/Common/Examine.h @ 4c0b674

Last change on this file since 4c0b674 was c6b4432, checked in by Andrew Beach <ajbeach@…>, 7 months ago

Remove BaseSyntaxNode? and clean-up.

  • Property mode set to 100644
File size: 858 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.h -- 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.