File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -272,13 +272,17 @@ yaml_scalars (unique int scalar: @yaml_scalar_node ref,
272272 int style: int ref,
273273 string value: string ref);
274274
275+ yaml_comments (unique int id: @yaml_comment,
276+ string text: string ref,
277+ string tostring: string ref);
278+
275279yaml_errors (unique int id: @yaml_error,
276280 string message: string ref);
277281
278282yaml_locations(unique int locatable: @yaml_locatable ref,
279283 int location: @location_default ref);
280284
281- @yaml_locatable = @yaml_node | @yaml_error;
285+ @yaml_locatable = @yaml_node | @yaml_error | @yaml_comment ;
282286
283287/*- Python dbscheme -*/
284288
Original file line number Diff line number Diff line change @@ -97,13 +97,17 @@ yaml_scalars (unique int scalar: @yaml_scalar_node ref,
9797 int style: int ref,
9898 string value: string ref);
9999
100+ yaml_comments (unique int id: @yaml_comment,
101+ string text: string ref,
102+ string tostring: string ref);
103+
100104yaml_errors (unique int id: @yaml_error,
101105 string message: string ref);
102106
103107yaml_locations(unique int locatable: @yaml_locatable ref,
104108 int location: @location_default ref);
105109
106- @yaml_locatable = @yaml_node | @yaml_error;
110+ @yaml_locatable = @yaml_node | @yaml_error | @yaml_comment ;
107111
108112/*- Database metadata -*/
109113
You can’t perform that action at this time.
0 commit comments