diff options
Diffstat (limited to 'src/macro_rules/pattern_checks.hpp')
-rw-r--r-- | src/macro_rules/pattern_checks.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/macro_rules/pattern_checks.hpp b/src/macro_rules/pattern_checks.hpp new file mode 100644 index 00000000..820a9ef4 --- /dev/null +++ b/src/macro_rules/pattern_checks.hpp @@ -0,0 +1,10 @@ +/* + */ +#pragma once + +extern bool is_token_path(eTokenType tt); +extern bool is_token_pat(eTokenType tt); +extern bool is_token_type(eTokenType tt); +extern bool is_token_expr(eTokenType tt); +extern bool is_token_stmt(eTokenType tt); + |