-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_actions.py
52 lines (36 loc) · 1.01 KB
/
json_actions.py
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
from parglare import get_collector
from parglare.actions import pass_inner
action = get_collector()
# Non-terminal rule actions
@action("Array")
def array_action(context, nodes):
return pass_inner(context, nodes)
@action("Object")
def object_action(context, nodes):
# Objects look like this before action:
# ['{', [['key', ':', 'value'], ['key', ':', 'value'], ...], '}']
if len(nodes) > 2:
members = nodes[1:-1][0]
return {member[0]: member[2] for member in members}
else:
return {}
@action("String")
def string_action(context, nodes):
str = pass_inner(context, nodes)
return str if str else ""
# Terminal Rule actions
@action("INT")
def int_action(context, value):
return int(value)
@action("FLOAT")
def float_action(context, value):
return float(value)
@action("NULL")
def null_action(context, value):
return None
@action("TRUE")
def true_action(context, value):
return True
@action("FALSE")
def false_action(context, value):
return False