From bca5912942e38344f14baffa44eabed2783c8bc3 Mon Sep 17 00:00:00 2001 From: sergeych Date: Fri, 30 Jan 2026 10:17:57 +0300 Subject: [PATCH] Enable parser checks in ScriptTest --- lynglib/src/commonTest/kotlin/ScriptTest.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lynglib/src/commonTest/kotlin/ScriptTest.kt b/lynglib/src/commonTest/kotlin/ScriptTest.kt index 9ba0378..fb9e445 100644 --- a/lynglib/src/commonTest/kotlin/ScriptTest.kt +++ b/lynglib/src/commonTest/kotlin/ScriptTest.kt @@ -244,7 +244,6 @@ class ScriptTest { } - @Ignore("incremental enable") @Test fun parseNumbersTest() { fun check(expected: String, type: Token.Type, row: Int, col: Int, src: String, offset: Int = 0) { @@ -287,7 +286,6 @@ class ScriptTest { } - @Ignore("incremental enable") @Test fun parseRangeTest() { var tt = parseLyng("5 .. 4".toSource()) @@ -303,7 +301,6 @@ class ScriptTest { assertEquals(Token.Type.INT, tt[2].type) } - @Ignore("incremental enable") @Test fun parseInTest() { var tt = parseLyng("5 in 4".toSource()) @@ -319,7 +316,6 @@ class ScriptTest { assertEquals(Token.Type.INT, tt[2].type) } - @Ignore("incremental enable") @Test fun parserLabelsTest() { val src = "label@ break@label".toSource()