mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
Change null-aware operator []
, operator []=
, and function call to not have a period.
Change-Id: I8b9c83e216dd713afeef8a1c1cf93c36c8de3792 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/132840 Reviewed-by: Lasse R.H. Nielsen <lrn@google.com> Commit-Queue: Erik Ernst <eernst@google.com>
This commit is contained in:
parent
e7d4c48a80
commit
a9ea9365ad
1 changed files with 2 additions and 2 deletions
|
@ -827,7 +827,7 @@ selector
|
|||
;
|
||||
|
||||
argumentPart
|
||||
: typeArguments? arguments
|
||||
: '?'? typeArguments? arguments
|
||||
;
|
||||
|
||||
incrementOperator
|
||||
|
@ -854,7 +854,7 @@ unconditionalAssignableSelector
|
|||
assignableSelector
|
||||
: unconditionalAssignableSelector
|
||||
| '?.' identifier
|
||||
| '?.[' expression ']'
|
||||
| '?' '[' expression ']'
|
||||
;
|
||||
|
||||
identifierNotFUNCTION
|
||||
|
|
Loading…
Reference in a new issue