Skip to content

Commit feb7627

Browse files
committed
Getting closer to a usable thing!
1 parent 1429d05 commit feb7627

23 files changed

+3433
-421
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
.DS_Store
2+
/loreline.js
3+
/loreline.js.map
4+
/build
5+
/node_modules
6+
/loreline
7+
/loreline.exe

.vscode/extensions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"jeremyfa.tasks-chooser",
4+
"nadako.vshaxe"
5+
]
6+
}

.vscode/tasks-chooser.json

+42-6
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,57 @@
22
"selectDescription": "Select task",
33
"items": [
44
{
5-
"displayName": "▶︎ Test",
5+
"displayName": "▶︎ CoffeeShop.lor",
66
"type": "shell",
7-
"description": "loreline play test/Test.lor",
7+
"description": "loreline play test/CoffeeShop.lor",
88
"command": "node",
99
"args": [
10-
"run", "play", "test/Test.lor"
10+
"run", "play", "test/CoffeeShop.lor"
1111
]
1212
},
1313
{
14-
"displayName": "▶︎ Test (Debug)",
14+
"displayName": "▶︎ CoffeeShop.lor (Debug)",
1515
"type": "shell",
16-
"description": "loreline play test/Test.lor --debug -Dloreline_debug_interpreter",
16+
"description": "loreline play test/CoffeeShop.lor --debug -Dloreline_debug_interpreter",
1717
"command": "node",
1818
"args": [
19-
"run", "play", "test/Test.lor", "--debug", "-Dloreline_debug_interpreter"
19+
"--enable-source-maps", "run", "play", "test/CoffeeShop.lor", "--debug", "-Dloreline_debug_interpreter"
20+
]
21+
},
22+
{
23+
"displayName": "▶︎ CoffeeShop.fr.lor",
24+
"type": "shell",
25+
"description": "loreline play test/CoffeeShop.fr.lor",
26+
"command": "node",
27+
"args": [
28+
"run", "play", "test/CoffeeShop.fr.lor"
29+
]
30+
},
31+
{
32+
"displayName": "▶︎ CoffeeShop.fr.lor (Debug)",
33+
"type": "shell",
34+
"description": "loreline play test/CoffeeShop.fr.lor --debug -Dloreline_debug_interpreter",
35+
"command": "node",
36+
"args": [
37+
"--enable-source-maps", "run", "play", "test/CoffeeShop.fr.lor", "--debug", "-Dloreline_debug_interpreter"
38+
]
39+
},
40+
{
41+
"displayName": "▶︎ Minimal.lor",
42+
"type": "shell",
43+
"description": "loreline play test/Minimal.lor",
44+
"command": "node",
45+
"args": [
46+
"run", "play", "test/Minimal.lor"
47+
]
48+
},
49+
{
50+
"displayName": "▶︎ Minimal.lor (Debug)",
51+
"type": "shell",
52+
"description": "loreline play test/Minimal.lor --debug -Dloreline_debug_interpreter",
53+
"command": "node",
54+
"args": [
55+
"--enable-source-maps", "run", "play", "test/Minimal.lor", "--debug", "-Dloreline_debug_interpreter"
2056
]
2157
}
2258
],

.vscode/tasks.json

+5-7
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,16 @@
77
"args": [
88
"run",
99
"play",
10-
"test/Test.lor",
11-
"--debug",
12-
"-Dloreline_debug_interpreter"
10+
"test/CoffeeShop.lor"
1311
],
1412
"group": {
1513
"kind": "build",
1614
"isDefault": true
1715
},
18-
"label": "▶︎ Test (Debug)"
16+
"label": "▶︎ CoffeeShop.lor"
1917
}
2018
],
21-
"displayName": "▶︎ Test (Debug)",
22-
"description": "loreline play test/Test.lor --debug -Dloreline_debug_interpreter",
23-
"chooserIndex": 1
19+
"displayName": "▶︎ CoffeeShop.lor",
20+
"description": "loreline play test/CoffeeShop.lor",
21+
"chooserIndex": 0
2422
}

0 commit comments

Comments
 (0)