-
-
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_public
, m_protected
and m_private
matchers functions
- Loading branch information
1 parent
08d248a
commit 86c39f2
Showing
4 changed files
with
91 additions
and
25 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
### 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 | | ||
| Function | Parameters | Return | Description | | ||
| :----------------------: | :--------: | :-------------: | :--------------------------------------------: | | ||
| m_virtual | () | FunctionMatcher | Create Matcher to match virtual function | | ||
| m_pure_virtual | () | FunctionMatcher | Create Matcher to match pure virtual function | | ||
| m_method | () | FunctionMatcher | Create Matcher to match method | | ||
| m_static | () | FunctionMatcher | Create Matcher to match static function | | ||
| m_const | () | FunctionMatcher | Create Matcher to match const function | | ||
| m_deleted | () | FunctionMatcher | Create Matcher to match deleted function | | ||
| m_constructor | () | FunctionMatcher | Create Matcher to match constructor | | ||
| m_default_constructor | () | FunctionMatcher | Create Matcher to match default constructor | | ||
| m_copy_constructor | () | FunctionMatcher | Create Matcher to match copy constructor | | ||
| m_move_constructor | () | FunctionMatcher | Create Matcher to match move constructor | | ||
| m_converting_constructor | () | FunctionMatcher | Create Matcher to match converting constructor | | ||
| m_destructor | () | FunctionMatcher | Create Matcher to match function is destructor | | ||
| m_public | () | FunctionMatcher | Create Matcher to match public function | | ||
| m_protected | () | FunctionMatcher | Create Matcher to match protected function | | ||
| m_private | () | FunctionMatcher | Create Matcher to match private function | |
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