Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
J
jetbrains-plugin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JastAdd
jetbrains-plugin
Merge requests
!3
Resolve "Parsing of Method Reference Expressions"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Parsing of Method Reference Expressions"
bugfix/parsing-of-method-reference-expressions
into
develop
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Johannes Mey
requested to merge
bugfix/parsing-of-method-reference-expressions
into
develop
3 years ago
Overview
0
Commits
1
Pipelines
2
Changes
1
Expand
Closes
#6 (closed)
Edited
3 years ago
by
Johannes Mey
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
964227ec
1 commit,
3 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/main/grammar/Aspect.bnf
+
2
−
2
Options
@@ -282,9 +282,9 @@ primary_expression ::= primary_prefix (primary_suffix)*
// member_selector unused!
primary_prefix ::= literal | THIS | (SUPER DOT java_identifier) | (LPAREN expression RPAREN) | allocation_expression | (result_type DOT CLASS) | name_name
primary_prefix ::= literal | THIS | (SUPER
(
DOT java_identifier)
?)
| (LPAREN expression RPAREN) | allocation_expression | (result_type DOT CLASS) |
type |
name_name
primary_suffix ::= (DOT THIS) | (DOT allocation_expression) | (DOT type_arguments java_identifier) | (LBRACKET expression RBRACKET) | (DOT java_identifier) | arguments | DOUBLECOLON
NEW | DOUBLECOLON
java_identifier
primary_suffix ::= (DOT THIS) | (DOT allocation_expression) | (DOT type_arguments java_identifier) | (LBRACKET expression RBRACKET) | (DOT java_identifier) | arguments | DOUBLECOLON
type_arguments? (NEW |
java_identifier
)
literal ::= INTEGER_LITERAL | FLOATING_POINT_LITERAL | CHARACTER_LITERAL | STRING_LITERAL | boolean_literal | null_literal
Loading