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

View File

@ -763,6 +763,8 @@ impl<'a> Parser<'a> {
let byte_pos = self.to_span_index(end); let byte_pos = self.to_span_index(end);
let start = InnerOffset(byte_pos.0 + 1); let start = InnerOffset(byte_pos.0 + 1);
let field = self.argument(start); 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('}') { if !self.consume('}') {
return; return;
} }