-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement
m_default_constructor
, m_copy_destructor
, `m_move_destr…
…uctor` matchers functions
- Loading branch information
1 parent
b649e8a
commit 86a6e5c
Showing
6 changed files
with
167 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
### AST matchers functions | ||
|
||
| Function | Parameters | Return | Description | | ||
| :----------------------: | :--------: | :-------------: | :---------------------------------------------------------------: | | ||
| m_virtual | () | FunctionMatcher | Create Matcher to check if the function is virtual | | ||
| m_pure_virtual | () | FunctionMatcher | Create Matcher to check if the function is pure virtual | | ||
| m_method | () | FunctionMatcher | Create Matcher to check if the function is a method | | ||
| m_static | () | FunctionMatcher | Create Matcher to check if the function is static | | ||
| m_const | () | FunctionMatcher | Create Matcher to check if the function is const | | ||
| m_deleted | () | FunctionMatcher | Create Matcher to check if the function is deleted | | ||
| m_constructor | () | FunctionMatcher | Create Matcher to check if the function is constructor | | ||
| m_default_constructor | () | FunctionMatcher | Create Matcher to check if the function is default constructor | | ||
| m_copy_constructor | () | FunctionMatcher | Create Matcher to check if the function is copy constructor | | ||
| m_move_constructor | () | FunctionMatcher | Create Matcher to check if the function is move constructor | | ||
| m_converting_constructor | () | FunctionMatcher | Create Matcher to check if the function is converting constructor | | ||
| m_destructor | () | FunctionMatcher | Create Matcher to check if the function is destructor | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters