Skip to content

Commit

Permalink
makes method disambiguator optional
Browse files Browse the repository at this point in the history
  • Loading branch information
kritzcreek committed Jun 27, 2024
1 parent d85f5e4 commit dcd0d06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scip.proto
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ enum PositionEncoding {
// interchangeably with `Symbol`. The syntax for Symbol is the following:
// ```
// # (<x>)+ stands for one or more repetitions of <x>
// # (<x>)? stands for zero or one occurrence of <x>
// <symbol> ::= <scheme> ' ' <package> ' ' (<descriptor>)+ | 'local ' <local-id>
// <package> ::= <manager> ' ' <package-name> ' ' <version>
// <scheme> ::= any UTF-8, escape spaces with double space. Must not be empty nor start with 'local'
Expand All @@ -164,7 +165,7 @@ enum PositionEncoding {
// <term> ::= <name> '.'
// <meta> ::= <name> ':'
// <macro> ::= <name> '!'
// <method> ::= <name> '(' <method-disambiguator> ').'
// <method> ::= <name> '(' (<method-disambiguator>)? ').'
// <type-parameter> ::= '[' <name> ']'
// <parameter> ::= '(' <name> ')'
// <name> ::= <identifier>
Expand Down

0 comments on commit dcd0d06

Please sign in to comment.