source: src/Common/Examine.h @ 36e120a

Last change on this file since 36e120a was c6b4432, checked in by Andrew Beach <ajbeach@…>, 8 months ago

Remove BaseSyntaxNode? and clean-up.

  • Property mode set to 100644
File size: 858 bytes
RevLine 
[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//
[4f6dda0]7// Examine.h -- 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]19const 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]24bool isDestructorFor(
25        const ast::FunctionDecl * func, const ast::StructDecl * type );
Note: See TracBrowser for help on using the repository browser.