Skip to content

Commit

Permalink
Enable parsing support for extra rest verbs (#921)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriehSchneier authored May 15, 2024
1 parent d052ea3 commit 6dc9f55
Show file tree
Hide file tree
Showing 4 changed files with 693 additions and 636 deletions.
2 changes: 1 addition & 1 deletion pkg/grammar/SyslLexer.g4
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ NativeDataTypes :
{ ls(p).inSqBrackets == 0 }?
;

HTTP_VERBS : ('GET' | 'POST' | 'DELETE' | 'PUT' | 'PATCH' ) [ \t]*
HTTP_VERBS : ('GET' | 'POST' | 'DELETE' | 'PUT' | 'PATCH' | 'OPTIONS' | 'HEAD' | 'TRACE' ) [ \t]*
{ ls(l).gotHTTPVerb = true }
;

Expand Down
Loading

0 comments on commit 6dc9f55

Please sign in to comment.