Skip to content

Commit

Permalink
show normal CC inside argument lists
Browse files Browse the repository at this point in the history
  • Loading branch information
siegfriedpammer committed Mar 19, 2011
1 parent efba806 commit 1a8f1bb
Show file tree
Hide file tree
Showing 2 changed files with 2,945 additions and 2,906 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ PrimitiveTypeName =

TypeName = ( "Global" | Identifier | PrimitiveTypeName | "?" /* used for ? = completion */ ) { TypeSuffix } { "." IdentifierOrKeyword { TypeSuffix } } .

TypeSuffix = "(" ( "Of" [ TypeName ] { "," [ TypeName ] } | [ ArgumentList ] ) ")" .
TypeSuffix = "(" (. PushContext(Context.Expression, la, t); .) ( "Of" [ (. PushContext(Context.Type, la, t); .) TypeName (. PopContext(); .) ] { "," [ (. PushContext(Context.Type, la, t); .) TypeName (. PopContext(); .) ] } | [ ArgumentList ] ) (. PopContext(); .) ")" .

IdentifierOrKeyword = ident
| "AddHandler"
Expand Down Expand Up @@ -1095,7 +1095,7 @@ AddOrRemoveHandlerStatement =
.

RaiseEventStatement =
"RaiseEvent" IdentifierOrKeyword [ "(" [ ArgumentList ] ")" ]
"RaiseEvent" IdentifierOrKeyword [ "(" (. PushContext(Context.Expression, la, t); .) [ ArgumentList ] (. PopContext(); .) ")" ]
.

IfStatement =
Expand Down
Loading

0 comments on commit 1a8f1bb

Please sign in to comment.