Compare commits

..

No commits in common. "c90d9d82128edeb4efc419894ab47c4e610a85ab" and "c7a439c896db967d8c545a16dfe0a7fa5bda93fa" have entirely different histories.

3 changed files with 2 additions and 10 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "tree-sitter-tiger"
description = "Tiger grammar for the tree-sitter parsing library"
version = "0.1.2"
version = "0.1.1"
keywords = ["incremental", "parsing", "tiger"]
categories = ["parsing", "text-editors"]
repository = "https://gitea.belanyi.fr/ambroisie/tree-sitter-tiger"

View file

@ -1,6 +1,6 @@
{
"name": "tree-sitter-tiger",
"version": "0.1.2",
"version": "0.1.1",
"description": "tiger grammar for tree-sitter",
"main": "bindings/node",
"keywords": [

View file

@ -12,26 +12,20 @@
; Class {{{
(class_declaration) @indent
(class_declaration "}" @indent_end)
(class_type) @indent
(class_type "}" @indent_end)
; }}}
; Groups {{{
(let_expression) @indent
"in" @branch
"end" @branch
(let_expression "end" @indent_end)
(sequence_expression) @indent
")" @branch
(sequence_expression ")" @indent_end)
; }}}
; Functions and methods {{{
(parameters) @indent
(parameters ")" @indent_end)
(function_call) @indent
(method_call) @indent
@ -45,14 +39,12 @@
; Values and expressions {{{
(array_value) @indent
"]" @branch
(array_value "]" @indent_end)
(array_expression) @indent
"of" @branch
(record_expression) @indent
"}" @branch
(record_expression "}" @indent_end)
(variable_declaration) @indent
; }}}