-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
51 lines (51 loc) · 1.34 KB
/
project.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"id": "scala/sderosiaux",
"name": "Whitespace parser",
"authors": ["Stéphane Derosiaux"],
"license": "none",
"languages": ["Scala"],
"tags": ["interpreter"],
"date": "2018-06-14 15:19:00 +0200",
"spec_version": "0.2",
"source": [
"https://github.com/sderosiaux/whitespace-parser",
"https://www.sderosiaux.com/articles/2018/06/15/a-simple-way-to-write-parsers-using-the-state-monad/",
"https://github.com/sderosiaux/golb/blob/master/src/pages/2018-06-15-parser-with-state-monad/index.md"
],
"submodules": [{ "path": "whitespace-parser", "url": "https://github.com/sderosiaux/whitespace-parser" }],
"whitespace": {
"unimplemented": [
"copy",
"slide",
"sub",
"mul",
"div",
"mod",
"store",
"retrieve",
"label",
"call",
"jmp",
"jz",
"jn",
"ret",
"readc",
"readi"
]
},
"assembly": {
"mnemonics": {
"push": "pushNumber",
"dup": "duplicate",
"swap": "swap",
"drop": "discard",
"add": "addition",
"end": "endProgram",
"printc": "printChar",
"printi": "printNumber"
},
"usage": ["enum"]
},
"programs": [{ "path": "src/test/scala/com/sderosiaux/whitespace/WhitespaceInterpreterTest.scala" }],
"commands": [{ "type": "interpreter", "input": "hardcoded hello world" }]
}