This website works better with JavaScript.
Home
Explore
Help
Sign In
isprogram
/
tree-sitter-c
mirror of
https://github.com/tree-sitter/tree-sitter-c
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
79
Wiki
Activity
Browse Source
Function calls have higher precedence than unary operators
pull/6/head
Max Brunsfeld
9 years ago
parent
9516e76b1f
commit
b8509fdf21
1 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-3
grammar.js
+ 3
- 3
grammar.js
View File
@ -13,9 +13,9 @@ const PREC = {
SHIFT
:
9
,
ADD
:
10
,
MULTIPLY
:
11
,
CA
LL
:
12
,
CAST
:
13
,
UNARY
:
14
,
CA
ST
:
12
,
UNARY
:
13
,
CALL
:
14
,
FIELD
:
15
,
SUBSCRIPT
:
16
}
;
Write
Preview
Loading…
Cancel
Save