-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39fe2c9
commit a048985
Showing
1 changed file
with
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -210,10 +210,15 @@ def generateBlockFinder( name:"", tag_as:"", start_pattern:nil, needs_semicolon: | |
:attributes_context, | ||
:comments_context, | ||
:storage_types, | ||
:operators, | ||
:vararg_ellipses, | ||
:function_pointer, | ||
:comma, | ||
# the following are a temp workaround for defaulted arguments | ||
# e.g. aFunc(int a = 10 + 10) | ||
:language_constants, | ||
:number_literal, | ||
:string_context, | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
jeff-hykin
Author
Owner
|
||
:operators, | ||
] | ||
# eventually this context will be more exclusive (can't have class definitons inside of an evaluation) | ||
# but for now it just includes everything | ||
|
@@ -821,6 +826,8 @@ def generateBlockFinder( name:"", tag_as:"", start_pattern:nil, needs_semicolon: | |
), | ||
includes: [ | ||
:function_parameter_context, | ||
# TODO: the function_call_context is included here as workaround for function-initializations like issue #198 | ||
# e.g. std::string ("hello"); | ||
:function_call_context, | ||
] | ||
) | ||
|
is
:string_context_c
still different, and does it need to be added?