character lits, initial work on literal case trees

This commit is contained in:
2024-10-21 22:46:26 -07:00
parent 33ec03f2da
commit 9148852eb5
12 changed files with 209 additions and 62 deletions

View File

@@ -17,6 +17,20 @@
{
"name": "keyword.newt",
"match": "\\b(data|where|case|of|let|in|U|module|import|ptype|pfunc|infix|infixl|infixr)\\b"
},
{
"name": "string.js",
"begin": ":=\\s*\"",
"end": "\"",
"patterns": [
{ "include": "source.js" }
]
},
{
"name": "string.newt",
"begin": "\"",
"end": "\""
}
]
}