Add JS_PUBLIC_API to the list of macro annotations

This commit is contained in:
Marco Castelluccio 2021-04-09 16:31:33 +02:00
Родитель 2768f1628b
Коммит e16b61e4e8
10 изменённых файлов: 106073 добавлений и 104435 удалений

2
Cargo.lock сгенерированный
Просмотреть файл

@ -2117,7 +2117,7 @@ dependencies = [
[[package]]
name = "tree-sitter-mozcpp"
version = "0.19.3"
version = "0.19.4"
dependencies = [
"cc",
"tree-sitter",

Просмотреть файл

@ -37,7 +37,7 @@ tree-sitter-python = "0.19.0"
tree-sitter-rust = "0.19.0"
tree-sitter-preproc = { path = "./tree-sitter-preproc", version = "0.19.0" }
tree-sitter-ccomment = { path = "./tree-sitter-ccomment", version = "0.19.0" }
tree-sitter-mozcpp = { path = "./tree-sitter-mozcpp", version = "0.19.3" }
tree-sitter-mozcpp = { path = "./tree-sitter-mozcpp", version = "0.19.4" }
tree-sitter-mozjs = { path = "./tree-sitter-mozjs", version = "0.19.0" }
[dev-dependencies]

2
enums/Cargo.lock сгенерированный
Просмотреть файл

@ -515,7 +515,7 @@ dependencies = [
[[package]]
name = "tree-sitter-mozcpp"
version = "0.19.3"
version = "0.19.4"
dependencies = [
"cc",
"tree-sitter",

Просмотреть файл

@ -18,5 +18,5 @@ tree-sitter-python = "0.19.0"
tree-sitter-rust = "0.19.0"
tree-sitter-preproc = { path = "../tree-sitter-preproc", version = "0.19.0" }
tree-sitter-ccomment = { path = "../tree-sitter-ccomment", version = "0.19.0" }
tree-sitter-mozcpp = { path = "../tree-sitter-mozcpp", version = "0.19.3" }
tree-sitter-mozcpp = { path = "../tree-sitter-mozcpp", version = "0.19.4" }
tree-sitter-mozjs = { path = "../tree-sitter-mozjs", version = "0.19.0" }

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,7 +1,7 @@
[package]
name = "tree-sitter-mozcpp"
description = "Mozcpp grammar for the tree-sitter parsing library"
version = "0.19.3"
version = "0.19.4"
authors = ["Calixte Denizet <cdenizet@mozilla.com>"]
license = "MIT"
readme = "bindings/rust/README.md"

Просмотреть файл

@ -191,6 +191,7 @@ module.exports = grammar(CPP, {
'MOZ_TSAN_BLACKLIST',
'MOZ_UNSAFE_REF',
'MOZ_XPCOM_ABI',
'JS_PUBLIC_API',
),
primitive_type: $ => token(choice(

Просмотреть файл

@ -11692,6 +11692,10 @@
{
"type": "STRING",
"value": "MOZ_XPCOM_ABI"
},
{
"type": "STRING",
"value": "JS_PUBLIC_API"
}
]
}

Просмотреть файл

@ -5406,6 +5406,10 @@
"type": "IDB_TRY_UNWRAP",
"named": false
},
{
"type": "JS_PUBLIC_API",
"named": false
},
{
"type": "L\"",
"named": false

Разница между файлами не показана из-за своего большого размера Загрузить разницу