-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshard-syntax.yaml
137 lines (116 loc) · 3.8 KB
/
shard-syntax.yaml
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# ************************************************************************* #
# This file is part of Shard. #
# #
# Shard is free software: you can redistribute it and/or modify #
# it under the terms of the GNU Affero General Public License as #
# published by the Free Software Foundation. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU Affero General Public License for more details. #
# #
# You should have received a copy of the GNU Affero General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# ************************************************************************* #
includes:
- shard-lex.yaml
nodes:
# Integer literal
INT_LITERAL:
- NUMBER_LITERAL
# Constant literals
LITERAL:
- INT_LITERAL
# Subexpression surrounded by parenthesis.
PAREN_EXPRESSION:
- [ "(", EXPRESSION, ")" ]
# Unary expressions
UNARY_EXPRESSION:
- EXPRESSION
- [ OPERATOR, EXPRESSION ]
- [ EXPRESSION, OPERATOR ]
# Expression operator
OPERATOR:
- OTHER
- [ OPERATOR, OTHER ]
# <expression> <operator> <expression>
BINARY_EXPRESSION:
- [ EXPRESSION, OPERATOR, EXPRESSION ]
# <expression> "(" [ <argument_list> ] ")"
# fn()
# fn(1, 2)
CALL_EXPRESSION:
- [ EXPRESSION, "(", ")" ]
- [ EXPRESSION, "(", ARGUMENT_LIST, ")" ]
# x = 10
# x, y
# x, y, z / 2 + 10
ARGUMENT_LIST:
- EXPRESSION
- [ EXPRESSION, ",", ARGUMENT_LIST ]
# <expression> "[" <argument_list> "]"
# fn[1, 2]
SUBSCRIPT_EXPRESSION:
- [ EXPRESSION, "[", ARGUMENT_LIST, "]" ]
# Base expression.
EXPRESSION:
- IDENTIFIER
- LITERAL
- PAREN_EXPRESSION
- UNARY_EXPRESSION
- BINARY_EXPRESSION
- CALL_EXPRESSION
- SUBSCRIPT_EXPRESSION
# Declaration with access specifier
RESTRICTED_DECLARATION:
- DECLARATION
- ACCESS_SPECIFIER DECLARATION
# Declaration access specifier
ACCESS_SPECIFIER:
- "public"
- "private"
# Base declaration
# All declarations starts with an identifier with is
# used to determine which type of declaration should be
# parsed.
# This allows the parser extensions
DECLARATION:
#- [ IDENTIFIER, __UNKNOWN__ ]
# Statements
# As declarations new statements can be added to the parser.
# All statements begins with identifier and parser can decide
# with statements should parse according to this identifier.
# There are some exceptions:
# - compound: starts with "{"
# - declaration: identifier is declaration identifier
# so when is not known, parser should try declarations.
# - expression: unknown identifier (probably variable/constant name)
# or something other.
STATEMENT:
- EXPRESSION_STATEMENT
- DECLARATION_STATEMENT
- COMPOUND_STATEMENT
#- [ IDENTIFIER, __UNKNOWN__ ]
# List of statements
STATEMENT_LIST:
- STATEMENT
- [ STATEMENT_LIST, STATEMENT ]
# Statement for expression
EXPRESSION_STATEMENT:
- ";"
- [ EXPRESSION, ";" ]
# Statement for declaration.
DECLARATION_STATEMENT:
- DECLARATION
# Compound/block statement.
COMPOUND_STATEMENT:
- [ "{", "}" ]
- [ "{", STATEMENT_LIST, "}" ]
# List of declarations.
DECLARATION_LIST:
- DECLARATION
- [ DECLARATION_LIST, DECLARATION ]
# Source unit - entry point
SOURCE:
- DECLARATION_LIST