feat: implement lexer #5

Merged
gk1623 merged 5 commits from lexer into master 2025-02-02 13:37:37 +00:00
3 changed files with 10 additions and 16 deletions
Showing only changes of commit bf310b633a - Show all commits

View File

@@ -1,2 +1,4 @@
version = 3.8.6
runner.dialect = scala3
binPack.literalsExclude = []

View File

@@ -42,6 +42,8 @@ class ParallelExamplesSpec
def fileIsDissallowed(filename: String): Boolean =
Seq(
// format: off
// disable formatting to avoid binPack
"wacc-examples/valid/advanced",
"wacc-examples/valid/array",
"wacc-examples/valid/basic/exit",
@@ -88,5 +90,6 @@ class ParallelExamplesSpec
"wacc-examples/invalid/semanticErr/while",
// invalid (whack)
"wacc-examples/invalid/whack"
// format: on
).find(filename.contains).isDefined
}