add a comment about what we can parse now

This commit is contained in:
Takayuki Maeda
2022-08-04 20:43:35 +09:00
parent dcd70c0995
commit 8c85c9936f
+2
View File
@@ -763,6 +763,8 @@ fn suggest_positional_arg_instead_of_captured_arg(&mut self, arg: Argument<'a>)
let byte_pos = self.to_span_index(end);
let start = InnerOffset(byte_pos.0 + 1);
let field = self.argument(start);
// We can only parse `foo.bar` field access, any deeper nesting,
// or another type of expression, like method calls, are not supported
if !self.consume('}') {
return;
}