add a comment about what we can parse now
This commit is contained in:
parent
dcd70c0995
commit
8c85c9936f
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue