Update dependencies and regenerate CPP parser (#12)
Co-authored-by: mskelton <mskelton@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
4af16fc9d2
commit
a99bb0d545
Generated
+4
-4
@@ -40,7 +40,7 @@
|
||||
},
|
||||
"node_modules/tree-sitter-c": {
|
||||
"version": "0.20.2",
|
||||
"resolved": "git+ssh://git@github.com/tree-sitter/tree-sitter-c.git#735716c926837d9e39e4effb3fdc28cee81a7e5e",
|
||||
"resolved": "git+ssh://git@github.com/tree-sitter/tree-sitter-c.git#0906255f8de1d319b8ec682ac8c43e7d2524b4fa",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
@@ -60,7 +60,7 @@
|
||||
},
|
||||
"node_modules/tree-sitter-cpp": {
|
||||
"version": "0.20.0",
|
||||
"resolved": "git+ssh://git@github.com/tree-sitter/tree-sitter-cpp.git#70aed2e9e83eb7320ab7c454d3084300bf587037",
|
||||
"resolved": "git+ssh://git@github.com/tree-sitter/tree-sitter-cpp.git#4c917d560572dc2b3704b041715b2729fa199963",
|
||||
"dev": true,
|
||||
"hasInstallScript": true,
|
||||
"license": "MIT",
|
||||
@@ -82,7 +82,7 @@
|
||||
"dev": true
|
||||
},
|
||||
"tree-sitter-c": {
|
||||
"version": "git+ssh://git@github.com/tree-sitter/tree-sitter-c.git#735716c926837d9e39e4effb3fdc28cee81a7e5e",
|
||||
"version": "git+ssh://git@github.com/tree-sitter/tree-sitter-c.git#0906255f8de1d319b8ec682ac8c43e7d2524b4fa",
|
||||
"dev": true,
|
||||
"from": "tree-sitter-c@git://github.com/tree-sitter/tree-sitter-c.git",
|
||||
"requires": {
|
||||
@@ -96,7 +96,7 @@
|
||||
"dev": true
|
||||
},
|
||||
"tree-sitter-cpp": {
|
||||
"version": "git+ssh://git@github.com/tree-sitter/tree-sitter-cpp.git#70aed2e9e83eb7320ab7c454d3084300bf587037",
|
||||
"version": "git+ssh://git@github.com/tree-sitter/tree-sitter-cpp.git#4c917d560572dc2b3704b041715b2729fa199963",
|
||||
"dev": true,
|
||||
"from": "tree-sitter-cpp@git://github.com/tree-sitter/tree-sitter-cpp.git",
|
||||
"requires": {
|
||||
|
||||
Vendored
+107
-7
@@ -3234,9 +3234,17 @@
|
||||
"type": "STRING",
|
||||
"value": "restrict"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "__restrict__"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "_Atomic"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "_Noreturn"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -4722,6 +4730,10 @@
|
||||
"type": "SYMBOL",
|
||||
"name": "sizeof_expression"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "generic_expression"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "subscript_expression"
|
||||
@@ -4887,12 +4899,20 @@
|
||||
"value": "?"
|
||||
},
|
||||
{
|
||||
"type": "FIELD",
|
||||
"name": "consequence",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "_expression"
|
||||
}
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "FIELD",
|
||||
"name": "consequence",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "_expression"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "BLANK"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
@@ -6255,6 +6275,86 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"generic_expression": {
|
||||
"type": "PREC",
|
||||
"value": 14,
|
||||
"content": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "_Generic"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "("
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_expression"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ","
|
||||
},
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "type_descriptor"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_expression"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ","
|
||||
},
|
||||
{
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "type_descriptor"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "_expression"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ")"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"subscript_expression": {
|
||||
"type": "PREC",
|
||||
"value": 16,
|
||||
@@ -7475,7 +7575,7 @@
|
||||
},
|
||||
{
|
||||
"type": "PATTERN",
|
||||
"value": "(\\\\(.|\\r?\\n)|[^\\\\\\n])*"
|
||||
"value": "(\\\\+(.|\\r?\\n)|[^\\\\\\n])*"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Vendored
+36
-1
@@ -135,6 +135,10 @@
|
||||
"type": "fold_expression",
|
||||
"named": true
|
||||
},
|
||||
{
|
||||
"type": "generic_expression",
|
||||
"named": true
|
||||
},
|
||||
{
|
||||
"type": "identifier",
|
||||
"named": true
|
||||
@@ -1722,7 +1726,7 @@
|
||||
},
|
||||
"consequence": {
|
||||
"multiple": false,
|
||||
"required": true,
|
||||
"required": false,
|
||||
"types": [
|
||||
{
|
||||
"type": "_expression",
|
||||
@@ -3157,6 +3161,25 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "generic_expression",
|
||||
"named": true,
|
||||
"fields": {},
|
||||
"children": {
|
||||
"multiple": true,
|
||||
"required": true,
|
||||
"types": [
|
||||
{
|
||||
"type": "_expression",
|
||||
"named": true
|
||||
},
|
||||
{
|
||||
"type": "type_descriptor",
|
||||
"named": true
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "goto_statement",
|
||||
"named": true,
|
||||
@@ -6465,6 +6488,14 @@
|
||||
"type": "_Atomic",
|
||||
"named": false
|
||||
},
|
||||
{
|
||||
"type": "_Generic",
|
||||
"named": false
|
||||
},
|
||||
{
|
||||
"type": "_Noreturn",
|
||||
"named": false
|
||||
},
|
||||
{
|
||||
"type": "__attribute__",
|
||||
"named": false
|
||||
@@ -6489,6 +6520,10 @@
|
||||
"type": "__fastcall",
|
||||
"named": false
|
||||
},
|
||||
{
|
||||
"type": "__restrict__",
|
||||
"named": false
|
||||
},
|
||||
{
|
||||
"type": "__stdcall",
|
||||
"named": false
|
||||
|
||||
Vendored
+379242
-366151
File diff suppressed because it is too large
Load Diff
+1
-1
Submodule tree-sitter-cpp updated: 70aed2e9e8...4c917d5605
Reference in New Issue
Block a user