Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tree-sitter-c

Package Overview
Dependencies
Maintainers
2
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tree-sitter-c - npm Package Compare versions

Comparing version 0.11.0 to 0.11.1

25

corpus/declarations.txt

@@ -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))))

4

grammar.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc