Update used_by for parent parsers

html_tags and ecma don't have a parser of they own,
but that's actually just to get around to inherit
common queries.

When editing these "base" queries,
the playground breaks. Having them in used_by would fix this.
This commit is contained in:
Santos Gallegos 2021-07-04 23:30:44 -05:00 committed by Stephan Seitz
parent 70f739c337
commit 8b876207e6

View file

@ -37,7 +37,7 @@ list.javascript = {
url = "https://github.com/tree-sitter/tree-sitter-javascript",
files = { "src/parser.c", "src/scanner.c" },
},
used_by = { "javascriptreact" },
used_by = { "javascriptreact", "ecma" },
maintainers = { "@steelsojka" },
}
@ -207,6 +207,7 @@ list.html = {
url = "https://github.com/tree-sitter/tree-sitter-html",
files = { "src/parser.c", "src/scanner.cc" },
},
used_by = { "html_tags" },
maintainers = { "@TravonteD" },
}