mirror of
https://github.com/boostorg/parser.git
synced 2026-01-19 16:32:13 +00:00
Remove more over-eager expectations.
This commit is contained in:
@@ -248,7 +248,7 @@ namespace yaml { namespace parser {
|
||||
|
||||
// [88]
|
||||
tag_directive =
|
||||
"TAG" > +blank > tag_handle > +blank > tag_prefix
|
||||
"TAG" >> +blank >> tag_handle >> +blank >> tag_prefix
|
||||
// TODO [add tag to tag symbol table]
|
||||
;
|
||||
|
||||
|
||||
@@ -426,7 +426,7 @@ namespace yaml { namespace parser {
|
||||
|
||||
// [160]
|
||||
flow_json_node =
|
||||
-(omit[properties(_r1, _r2)[_a = _1]] > separate(_r1, _r2))
|
||||
-(omit[properties(_r1, _r2)[_a = _1]] >> separate(_r1, _r2))
|
||||
>> flow_json_content(_r1, _r2)
|
||||
[_val = handle_properties(_a, _1, phx::ref(anchors))]
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user