tree-sitter-c
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -20,3 +20,3 @@ const PREC = { | ||
FIELD: 15, | ||
SUBSCRIPT: 16, | ||
SUBSCRIPT: 16 | ||
}; | ||
@@ -524,4 +524,4 @@ | ||
field_expression: $ => choice( | ||
prec.left(PREC.FIELD, seq($._expression, '.', $._expression)), | ||
prec.left(PREC.FIELD, seq($._expression, '->', $._expression)) | ||
prec.left(PREC.FIELD, seq($._expression, '.', $.identifier)), | ||
prec.left(PREC.FIELD, seq($._expression, '->', $.identifier)) | ||
), | ||
@@ -618,3 +618,3 @@ | ||
) | ||
)), | ||
)) | ||
} | ||
@@ -621,0 +621,0 @@ }); |
{ | ||
"name": "tree-sitter-c", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "C grammar for node-tree-sitter", | ||
@@ -20,5 +20,5 @@ "main": "index.js", | ||
"scripts": { | ||
"prepublish": "tree-sitter compile && node-gyp build", | ||
"build": "tree-sitter compile && node-gyp build", | ||
"test": "tree-sitter test" | ||
} | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2324822