From 607b426e269b17f4ad32dca9c612c4a9f8541766 Mon Sep 17 00:00:00 2001 From: Gammut Date: Sun, 9 Jul 2023 11:35:32 -0500 Subject: Refactor queries for ecma based languages (#7207) --- runtime/queries/_typescript/locals.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 runtime/queries/_typescript/locals.scm (limited to 'runtime/queries/_typescript/locals.scm') diff --git a/runtime/queries/_typescript/locals.scm b/runtime/queries/_typescript/locals.scm new file mode 100644 index 00000000..fe13f21d --- /dev/null +++ b/runtime/queries/_typescript/locals.scm @@ -0,0 +1,16 @@ +; Definitions +;------------ + +; Javascript and Typescript Treesitter grammars deviate when defining the +; tree structure for parameters, so we need to address them in each specific +; language instead of ecma. + +; (i: t) +; (i: t = 1) +(required_parameter + (identifier) @local.definition) + +; (i?: t) +; (i?: t = 1) // Invalid but still posible to hihglight. +(optional_parameter + (identifier) @local.definition) -- cgit v1.2.3-70-g09d2