aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/tiger_spec.lua
diff options
context:
space:
mode:
authorPham Huy Hoang <hoangtun0810@gmail.com>2023-06-05 09:52:36 +0900
committerGitHub <noreply@github.com>2023-06-05 09:52:36 +0900
commit9ec2a6bbdae426fc093b71805e7929158ac09411 (patch)
tree8827be971995cb215b5ef898a3ca38bf4ea865ad /tests/indent/tiger_spec.lua
parentUpdate parsers: comment, usd (#4904) (diff)
downloadnvim-treesitter-9ec2a6bbdae426fc093b71805e7929158ac09411.tar
nvim-treesitter-9ec2a6bbdae426fc093b71805e7929158ac09411.tar.gz
nvim-treesitter-9ec2a6bbdae426fc093b71805e7929158ac09411.tar.bz2
nvim-treesitter-9ec2a6bbdae426fc093b71805e7929158ac09411.tar.lz
nvim-treesitter-9ec2a6bbdae426fc093b71805e7929158ac09411.tar.xz
nvim-treesitter-9ec2a6bbdae426fc093b71805e7929158ac09411.tar.zst
nvim-treesitter-9ec2a6bbdae426fc093b71805e7929158ac09411.zip
tests: fix failed tests (#4901)
fix failed tests for tiger, t32 and wgsl
Diffstat (limited to 'tests/indent/tiger_spec.lua')
-rw-r--r--tests/indent/tiger_spec.lua73
1 files changed, 24 insertions, 49 deletions
diff --git a/tests/indent/tiger_spec.lua b/tests/indent/tiger_spec.lua
index f435b4c03..c1f252fd8 100644
--- a/tests/indent/tiger_spec.lua
+++ b/tests/indent/tiger_spec.lua
@@ -1,5 +1,4 @@
local Runner = require("tests.indent.common").Runner
-local XFAIL = require("tests.indent.common").XFAIL
local runner = Runner:new(it, "tests/indent/tiger", {
tabstop = 2,
@@ -14,62 +13,46 @@ describe("indent Tiger:", function()
end)
describe("new line:", function()
- runner:new_line(
- "classes.tig",
- { on_line = 1, text = "var a := 0", indent = 2 },
- "class declaration beginning",
- XFAIL
- )
+ runner:new_line("classes.tig", { on_line = 1, text = "var a := 0", indent = 2 }, "class declaration beginning")
runner:new_line("classes.tig", { on_line = 2, text = "var a := 0", indent = 2 }, "class declaration after field")
runner:new_line("classes.tig", { on_line = 4, text = "var a := 0", indent = 2 }, "class declaration after method")
runner:new_line("classes.tig", { on_line = 5, text = "var a := 0", indent = 0 }, "after class declaration")
- runner:new_line("classes.tig", { on_line = 7, text = "var a := 0", indent = 2 }, "class type beginning", XFAIL)
+ runner:new_line("classes.tig", { on_line = 7, text = "var a := 0", indent = 2 }, "class type beginning")
runner:new_line("classes.tig", { on_line = 8, text = "var a := 0", indent = 2 }, "class type after field")
- runner:new_line("classes.tig", { on_line = 10, text = "self.a := 0", indent = 4 }, "inside method", XFAIL)
+ runner:new_line("classes.tig", { on_line = 10, text = "self.a := 0", indent = 4 }, "inside method")
runner:new_line("classes.tig", { on_line = 13, text = "var a := 0", indent = 2 }, "class type after method")
runner:new_line("classes.tig", { on_line = 14, text = "var a := 0", indent = 0 }, "after class type")
- runner:new_line("control-flow.tig", { on_line = 2, text = "true", indent = 4 }, "if condition", XFAIL)
- runner:new_line("control-flow.tig", { on_line = 4, text = "true", indent = 4 }, "if consequence", XFAIL)
- runner:new_line("control-flow.tig", { on_line = 4, text = "true", indent = 4 }, "if alternative", XFAIL)
- runner:new_line("control-flow.tig", { on_line = 10, text = "start := 0", indent = 4 }, "for index start", XFAIL)
- runner:new_line("control-flow.tig", { on_line = 12, text = "the_end", indent = 4 }, "for index end", XFAIL)
- runner:new_line("control-flow.tig", { on_line = 14, text = "break", indent = 4 }, "for body", XFAIL)
- runner:new_line("control-flow.tig", { on_line = 18, text = "true", indent = 4 }, "while condition", XFAIL)
- runner:new_line("control-flow.tig", { on_line = 20, text = "break", indent = 4 }, "while body", XFAIL)
+ runner:new_line("control-flow.tig", { on_line = 2, text = "true", indent = 4 }, "if condition")
+ runner:new_line("control-flow.tig", { on_line = 4, text = "true", indent = 4 }, "if consequence")
+ runner:new_line("control-flow.tig", { on_line = 4, text = "true", indent = 4 }, "if alternative")
+ runner:new_line("control-flow.tig", { on_line = 10, text = "start := 0", indent = 4 }, "for index start")
+ runner:new_line("control-flow.tig", { on_line = 12, text = "the_end", indent = 4 }, "for index end")
+ runner:new_line("control-flow.tig", { on_line = 14, text = "break", indent = 4 }, "for body")
+ runner:new_line("control-flow.tig", { on_line = 18, text = "true", indent = 4 }, "while condition")
+ runner:new_line("control-flow.tig", { on_line = 20, text = "break", indent = 4 }, "while body")
- runner:new_line(
- "functions.tig",
- { on_line = 1, text = "parameter: int,", indent = 2 },
- "parameter list beginning",
- XFAIL
- )
+ runner:new_line("functions.tig", { on_line = 1, text = "parameter: int,", indent = 2 }, "parameter list beginning")
runner:new_line("functions.tig", { on_line = 2, text = "parameter: int,", indent = 2 }, "parameter list middle")
runner:new_line("functions.tig", { on_line = 4, text = ",parameter: int", indent = 2 }, "parameter list end")
runner:new_line("functions.tig", { on_line = 5, text = "var a := 0", indent = 0 }, "after parameter list")
- runner:new_line("functions.tig", { on_line = 7, text = "print(a)", indent = 2 }, "function body", XFAIL)
- runner:new_line("functions.tig", { on_line = 9, text = "a,", indent = 6 }, "function call beginning", XFAIL)
+ runner:new_line("functions.tig", { on_line = 7, text = "print(a)", indent = 2 }, "function body")
+ runner:new_line("functions.tig", { on_line = 9, text = "a,", indent = 6 }, "function call beginning")
runner:new_line("functions.tig", { on_line = 10, text = "a,", indent = 6 }, "function call middle")
runner:new_line("functions.tig", { on_line = 12, text = ",a", indent = 6 }, "function call end")
runner:new_line("functions.tig", { on_line = 13, text = "; print(a)", indent = 4 }, "after function call")
- runner:new_line(
- "functions.tig",
- { on_line = 14, text = "var a := 12", indent = 0 },
- "after function declaration",
- XFAIL
- )
+ runner:new_line("functions.tig", { on_line = 14, text = "var a := 12", indent = 0 }, "after function declaration")
runner:new_line("groupings.tig", { on_line = 2, text = "var b := 0", indent = 2 }, "let declarations")
- runner:new_line("groupings.tig", { on_line = 3, text = "a := a + 1", indent = 2 }, "after 'in'", XFAIL)
- runner:new_line("groupings.tig", { on_line = 4, text = "a := a + 1;", indent = 4 }, "sequence", XFAIL)
+ runner:new_line("groupings.tig", { on_line = 3, text = "a := a + 1", indent = 2 }, "after 'in'")
+ runner:new_line("groupings.tig", { on_line = 4, text = "a := a + 1;", indent = 4 }, "sequence")
runner:new_line("groupings.tig", { on_line = 8, text = "a := a + 1;", indent = 2 }, "after sequence")
runner:new_line("groupings.tig", { on_line = 10, text = "+ 1", indent = 0 }, "after 'end'")
runner:new_line(
"values-and-expressions.tig",
{ on_line = 4, text = "field: record,", indent = 4 },
- "record type beginning",
- XFAIL
+ "record type beginning"
)
runner:new_line(
"values-and-expressions.tig",
@@ -85,39 +68,31 @@ describe("indent Tiger:", function()
runner:new_line(
"values-and-expressions.tig",
{ on_line = 10, text = "0", indent = 4 },
- "variable declaration init value",
- XFAIL
+ "variable declaration init value"
)
runner:new_line(
"values-and-expressions.tig",
{ on_line = 11, text = "+ a", indent = 4 },
"variable declaration init follow-up"
)
- runner:new_line("values-and-expressions.tig", { on_line = 13, text = "a", indent = 4 }, "array index", XFAIL)
+ runner:new_line("values-and-expressions.tig", { on_line = 13, text = "a", indent = 4 }, "array index")
runner:new_line("values-and-expressions.tig", { on_line = 14, text = "+ a", indent = 4 }, "array index follow-up")
runner:new_line("values-and-expressions.tig", { on_line = 15, text = "+ a", indent = 2 }, "after array value")
+ runner:new_line("values-and-expressions.tig", { on_line = 18, text = "a", indent = 4 }, "array expression size")
runner:new_line(
"values-and-expressions.tig",
- { on_line = 18, text = "a", indent = 4 },
- "array expression size",
- XFAIL
- )
- runner:new_line(
- "values-and-expressions.tig",
- { on_line = 20, text = "of", indent = 2 },
+ { on_line = 20, text = "of", indent = 4 },
"array expression after size"
)
runner:new_line(
"values-and-expressions.tig",
{ on_line = 21, text = "a", indent = 4 },
- "array expression init value",
- XFAIL
+ "array expression init value"
)
runner:new_line(
"values-and-expressions.tig",
{ on_line = 25, text = "field = 0,", indent = 4 },
- "record expression beginning",
- XFAIL
+ "record expression beginning"
)
runner:new_line(
"values-and-expressions.tig",