diff options
author | oberblastmeister | 2021-09-01 16:08:08 +0000 |
---|---|---|
committer | GitHub | 2021-09-01 16:08:08 +0000 |
commit | 5766f5da8fc9e98320e7e765c47e701d72108028 (patch) | |
tree | c65b2f9ca410983256a80509838fb28f0482a14f /runtime/queries/ocaml/locals.scm | |
parent | 825bceeab68276cdf120bda5d172b854867d8585 (diff) |
OCaml support (#666)
* added some stuff
* add interface
* indent
* highlights and locals
* scope
* change some stuff
* add indents
* fix blanket highlight
* macro
* use inherits
Diffstat (limited to 'runtime/queries/ocaml/locals.scm')
-rw-r--r-- | runtime/queries/ocaml/locals.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/runtime/queries/ocaml/locals.scm b/runtime/queries/ocaml/locals.scm new file mode 100644 index 00000000..8f3f3fdf --- /dev/null +++ b/runtime/queries/ocaml/locals.scm @@ -0,0 +1,24 @@ +; Scopes +;------- + +[ + (let_binding) + (class_binding) + (class_function) + (method_definition) + (fun_expression) + (object_expression) + (for_expression) + (match_case) + (attribute_payload) +] @local.scope + +; Definitions +;------------ + +(value_pattern) @local.definition + +; References +;----------- + +(value_path . (value_name) @local.reference) |