-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.json
65 lines (65 loc) · 2.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"id": "java/ralucaa-whitespace4j",
"name": "whitespace4j",
"authors": ["Raluca Criste"],
"license": "none",
"languages": ["Java"],
"tags": ["interpreter", "mapping"],
"date": "2014-01-20 16:43:08 +0000",
"spec_version": "0.3",
"source": ["https://github.com/ralucaa/whitespace4j"],
"submodules": [{ "path": "whitespace4j", "url": "https://github.com/ralucaa/whitespace4j" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"add": "ADDITION",
"sub": "SUBTRACTION",
"mul": "MULTIPLICATION",
"div": "DIVISION",
"mod": "MODULO"
},
"usage": ["enum"],
"notes": "Instructions are referred to by their sequence in the state machine and only arithmetic ops are named"
},
"mappings": [{ "space": "W", "tab": "T", "lf": "N", "line_comment": "#" }],
"programs": [
{ "path": "testset/default/calc.ws", "equivalent": "calc.ws", "spec_version": "0.2" },
{ "path": "testset/default/count.ws", "equivalent": "count.ws", "spec_version": "0.2" },
{ "path": "testset/default/fact.ws", "equivalent": "fact.ws", "spec_version": "0.2" },
{ "path": "testset/default/fibonacci.ws", "equivalent": "fibonacci.ws", "spec_version": "0.2" },
{ "path": "testset/default/hanoi.ws", "equivalent": "hanoi.ws", "spec_version": "0.2" },
{ "path": "testset/default/helloworld.ws", "equivalent": "hworld.ws", "spec_version": "0.2" },
{ "path": "testset/default/name.ws", "equivalent": "name.ws", "spec_version": "0.2" },
{
"path": "testset/visible/count.ws",
"mapping_index": 0,
"equivalent": "count.ws",
"spec_version": "0.2"
},
{
"path": "testset/visible/hanoi.ws",
"mapping_index": 0,
"equivalent": "hanoi.ws",
"spec_version": "0.2"
},
{
"path": "testset/visible/helloworld.ws",
"mapping_index": 0,
"equivalent": "hworld.ws",
"spec_version": "0.2"
},
{
"path": "testset/visible/helloworld-2.ws",
"mapping_index": 0,
"equivalent": "hworld.ws",
"spec_version": "0.2"
}
],
"commands": [
{
"type": "interpreter",
"bin": "bin/uk/ac/glasgow/whitespace4j/Main",
"usage": "(DEFAULT | VISIBLE) <file>"
}
]
}