-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.json
48 lines (48 loc) · 1.33 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
{
"id": "rust/lalrpop",
"name": "LALRPOP: Writing a custom lexer",
"authors": ["Mako"],
"license": "Apache-2.0",
"languages": ["Rust"],
"tags": ["parser"],
"date": "2016-08-17 17:02:36 -0400",
"spec_version": "0.3",
"source": [
"https://github.com/lalrpop/lalrpop",
"https://github.com/lalrpop/lalrpop/tree/master/doc/whitespace",
"https://lalrpop.github.io/lalrpop/lexer_tutorial/003_writing_custom_lexer.html",
"https://github.com/lalrpop/lalrpop/blob/master/doc/src/lexer_tutorial/003_writing_custom_lexer.md"
],
"submodules": [{ "path": "lalrpop", "url": "https://github.com/lalrpop/lalrpop" }],
"whitespace": { "extension": "ws" },
"assembly": {
"mnemonics": {
"push": "Push",
"dup": "Dup",
"copy": "Copy",
"swap": "Swap",
"drop": "Discard",
"slide": "Slide",
"add": "Add",
"sub": "Sub",
"mul": "Mul",
"div": "Div",
"mod": "Mod",
"store": "Store",
"retrieve": "Load",
"label": "Mark",
"call": "Call",
"jmp": "Jump",
"jz": "Jz",
"jn": "Js",
"ret": "Return",
"end": "Exit",
"printc": "PrintChar",
"printi": "PrintNum",
"readc": "ReadChar",
"readi": "ReadNum"
},
"usage": ["enum"]
},
"programs": [{ "path": "doc/whitespace/hello.ws", "spec_version": "0.2" }]
}