Port tokenizer to C#

Another language change, another unrefactored (but already better tested) tokenizer
This commit is contained in:
0x4261756D
2024-01-16 02:59:51 +01:00
parent 7889f4c27a
commit 34cb88582d
15 changed files with 3866 additions and 4281 deletions

41
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/luaaaaah.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/luaaaaah.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/luaaaaah.csproj"
],
"problemMatcher": "$msCompile"
}
]
}