tree-sitter-c
Advanced tools
Comparing version 0.11.0 to 0.11.1
@@ -286,1 +286,26 @@ ============================================ | ||
(function_declarator (identifier) (parameter_list)))))) | ||
========================== | ||
Type qualifiers | ||
========================== | ||
const _Atomic unsigned long int x = 5; | ||
restrict int y = 6; | ||
volatile int z = 7; | ||
--- | ||
(translation_unit | ||
(declaration | ||
(type_qualifier) | ||
(type_qualifier) | ||
(sized_type_specifier (primitive_type)) | ||
(init_declarator (identifier) (number_literal))) | ||
(declaration | ||
(type_qualifier) | ||
(primitive_type) | ||
(init_declarator (identifier) (number_literal))) | ||
(declaration | ||
(type_qualifier) | ||
(primitive_type) | ||
(init_declarator (identifier) (number_literal)))) |
@@ -325,3 +325,5 @@ const PREC = { | ||
'restrict', | ||
'volatile' | ||
'volatile', | ||
'restrict', | ||
'_Atomic' | ||
), | ||
@@ -328,0 +330,0 @@ |
{ | ||
"name": "tree-sitter-c", | ||
"version": "0.11.0", | ||
"version": "0.11.1", | ||
"description": "C grammar for node-tree-sitter", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
3127091
4833