-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parsing of name.{
in SelectedValue
#75
Comments
Also don't do
|
Also it looks like your markdown has suffered from composite-schemas-spec/spec/Appendix A -- Field Selection.md Lines 342 to 349 in f56a366
|
That's fixed in #63. 🙂 |
A
SelectedValue
of, for example,field.{ a }
will begin parsing as aPath
due to theName
token. After the period in aPathSegment
, anotherPathSegment
is required, but the next token will instead be aLeftBrace
token.Should we perform a negative lookahead when parsing a
PathSegment
, so that the period isn't consumed when followed by a left brace, or is there another solution here?The text was updated successfully, but these errors were encountered: