We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 004a5b4 commit 55f2f04Copy full SHA for 55f2f04
1 file changed
shared/tree-sitter-extractor/src/generator/prefix.dbscheme
@@ -97,13 +97,17 @@ yaml_scalars (unique int scalar: @yaml_scalar_node ref,
97
int style: int ref,
98
string value: string ref);
99
100
+yaml_comments (unique int id: @yaml_comment,
101
+ string text: string ref,
102
+ string tostring: string ref);
103
+
104
yaml_errors (unique int id: @yaml_error,
105
string message: string ref);
106
107
yaml_locations(unique int locatable: @yaml_locatable ref,
108
int location: @location_default ref);
109
-@yaml_locatable = @yaml_node | @yaml_error;
110
+@yaml_locatable = @yaml_node | @yaml_error | @yaml_comment;
111
112
/*- Database metadata -*/
113
0 commit comments