mirror of
https://github.com/kristoferssolo/tree-sitter-bruno.git
synced 2026-03-22 00:36:24 +00:00
chore: update packages
This commit is contained in:
919
src/grammar.json
generated
919
src/grammar.json
generated
@@ -1,919 +0,0 @@
|
||||
{
|
||||
"$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json",
|
||||
"name": "bruno",
|
||||
"rules": {
|
||||
"source_file": {
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "FIELD",
|
||||
"name": "tag",
|
||||
"content": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "meta"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "http"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "query"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "headers"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "auths"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodies"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "varsandassert"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "script"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "tests"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "docs"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"meta": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "meta"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"http": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "http_verb"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"http_verb": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "get"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "post"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "put"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "delete"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "patch"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "options"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "head"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "connect"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "trace"
|
||||
}
|
||||
]
|
||||
},
|
||||
"query": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "query"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"headers": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "headers"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"auths": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "authawsv4"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "authbasic"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "authbearer"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "authdigest"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "authoauth2"
|
||||
}
|
||||
]
|
||||
},
|
||||
"authawsv4": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "auth:awsv4"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"authbasic": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "auth:basic"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"authbearer": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "auth:bearer"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"authdigest": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "auth:digest"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"authoauth2": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "auth:oauth2"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodies": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodyjson"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodytext"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodyxml"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodysparql"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodygraphql"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodygraphqlvars"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodyforms"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "body"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodyforms": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodyformurlencoded"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "bodyformmultipart"
|
||||
}
|
||||
]
|
||||
},
|
||||
"body": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "body"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodyjson": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "body:json"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodytext": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "body:text"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodyxml": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "body:xml"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodysparql": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "body:sparql"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodygraphql": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "body:graphql"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodygraphqlvars": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "body:graphql:vars"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodyformurlencoded": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "body:form-urlencoded"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bodyformmultipart": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "body:multipart-form"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"varsandassert": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "vars"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "vars_secret"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "varsreq"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "varsres"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "assert"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "params"
|
||||
}
|
||||
]
|
||||
},
|
||||
"vars": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "vars"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"vars_secret": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "vars:secret"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "array"
|
||||
}
|
||||
]
|
||||
},
|
||||
"varsreq": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "vars:pre-request"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"varsres": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "vars:post-response"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assert": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "assert"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "assert_dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"script": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "scriptreq"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "scriptres"
|
||||
}
|
||||
]
|
||||
},
|
||||
"scriptreq": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "script:pre-request"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"scriptres": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "script:post-response"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"params": {
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "params_path"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "params_query"
|
||||
}
|
||||
]
|
||||
},
|
||||
"params_query": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "params:query"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"params_path": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "params:path"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"tests": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "tests"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"docs": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "ALIAS",
|
||||
"content": {
|
||||
"type": "STRING",
|
||||
"value": "docs"
|
||||
},
|
||||
"named": true,
|
||||
"value": "keyword"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "textblock"
|
||||
}
|
||||
]
|
||||
},
|
||||
"textblock": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "{"
|
||||
},
|
||||
{
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "rawtext"
|
||||
},
|
||||
{
|
||||
"type": "BLANK"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"array": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "["
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "array_value"
|
||||
},
|
||||
{
|
||||
"type": "CHOICE",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ","
|
||||
},
|
||||
{
|
||||
"type": "BLANK"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "]"
|
||||
}
|
||||
]
|
||||
},
|
||||
"array_value": {
|
||||
"type": "PATTERN",
|
||||
"value": "[^\\r\\n\\s\\t\\[\\],]+"
|
||||
},
|
||||
"dictionary": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "{"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "dictionary_pair"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"dictionary_pair": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "key"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "value"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assert_dictionary": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "{"
|
||||
},
|
||||
{
|
||||
"type": "REPEAT",
|
||||
"content": {
|
||||
"type": "SYMBOL",
|
||||
"name": "assert_dictionary_pair"
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": "}"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assert_dictionary_pair": {
|
||||
"type": "SEQ",
|
||||
"members": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "assert_key"
|
||||
},
|
||||
{
|
||||
"type": "STRING",
|
||||
"value": ":"
|
||||
},
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "value"
|
||||
}
|
||||
]
|
||||
},
|
||||
"assert_key": {
|
||||
"type": "PATTERN",
|
||||
"value": "[^\\r\\n:]+"
|
||||
},
|
||||
"key": {
|
||||
"type": "PATTERN",
|
||||
"value": "[^\\s\\r\\n:]+"
|
||||
},
|
||||
"value": {
|
||||
"type": "PATTERN",
|
||||
"value": "[^\\r\\n]*"
|
||||
}
|
||||
},
|
||||
"extras": [
|
||||
{
|
||||
"type": "PATTERN",
|
||||
"value": "\\s+|(\\r?\\n)"
|
||||
}
|
||||
],
|
||||
"conflicts": [],
|
||||
"precedences": [],
|
||||
"externals": [
|
||||
{
|
||||
"type": "SYMBOL",
|
||||
"name": "rawtext"
|
||||
}
|
||||
],
|
||||
"inline": [],
|
||||
"supertypes": []
|
||||
}
|
||||
Reference in New Issue
Block a user