flatten qualified name
This commit is contained in:
Родитель
7d66f9a6f9
Коммит
ec5dd42da2
|
@ -26,7 +26,7 @@ trait NamespacedNameTrait {
|
|||
}
|
||||
|
||||
if ($namespaceDefinition->name !== null) {
|
||||
$resolvedName = ResolvedName::buildName($namespaceDefinition->name->nameParts->children, $content);
|
||||
$resolvedName = ResolvedName::buildName($namespaceDefinition->name->nameParts, $content);
|
||||
} else {
|
||||
$resolvedName = ResolvedName::buildName([], $content);
|
||||
}
|
||||
|
|
|
@ -496,7 +496,7 @@ class Node implements \JsonSerializable {
|
|||
}
|
||||
|
||||
$namespaceNamePartsPrefix =
|
||||
$useDeclaration->namespaceName !== null ? $useDeclaration->namespaceName->nameParts->children : [];
|
||||
$useDeclaration->namespaceName !== null ? $useDeclaration->namespaceName->nameParts : [];
|
||||
|
||||
foreach ($imports as $import) {
|
||||
if ($useDeclaration->groupClauses !== null) {
|
||||
|
@ -505,7 +505,7 @@ class Node implements \JsonSerializable {
|
|||
// use function A\B\C\{A, B} function import: ["A" => [A,B,C,A], "B" => [A,B,C]]
|
||||
// use function A\B\C\{const A} const import: ["A" => [A,B,C,A]]
|
||||
$alias = $import->namespaceName->getLastNamePart()->getText($contents);
|
||||
$namespaceNameParts = \array_merge($namespaceNamePartsPrefix, $import->namespaceName->nameParts->children);
|
||||
$namespaceNameParts = \array_merge($namespaceNamePartsPrefix, $import->namespaceName->nameParts);
|
||||
$functionOrConst = $import->functionOrConst ?? $useDeclaration->functionOrConst;
|
||||
} else {
|
||||
// use A\B\C; namespace import: ["C" => [A,B,C]]
|
||||
|
|
|
@ -50,7 +50,7 @@ class QualifiedName extends Node implements NamespacedNameInterface {
|
|||
return
|
||||
!$this->isFullyQualifiedName() &&
|
||||
!$this->isRelativeName() &&
|
||||
\count($this->nameParts->children) > 1; // at least one namespace separator
|
||||
\count($this->nameParts) > 1; // at least one namespace separator
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -86,7 +86,7 @@ class QualifiedName extends Node implements NamespacedNameInterface {
|
|||
// FULLY QUALIFIED NAMES
|
||||
// - resolve to the name without leading namespace separator.
|
||||
if ($this->isFullyQualifiedName()) {
|
||||
return ResolvedName::buildName($this->nameParts->children, $this->getFileContents());
|
||||
return ResolvedName::buildName($this->nameParts, $this->getFileContents());
|
||||
}
|
||||
|
||||
// RELATIVE NAMES
|
||||
|
@ -116,13 +116,13 @@ class QualifiedName extends Node implements NamespacedNameInterface {
|
|||
$resolvedName = $this->tryResolveFromImportTable($constImportTable, /* case-sensitive */ true);
|
||||
$namespaceDefinition = $this->getNamespaceDefinition();
|
||||
if ($namespaceDefinition !== null && $namespaceDefinition->name === null) {
|
||||
$resolvedName = $resolvedName ?? ResolvedName::buildName($this->nameParts->children, $this->getFileContents());
|
||||
$resolvedName = $resolvedName ?? ResolvedName::buildName($this->nameParts, $this->getFileContents());
|
||||
}
|
||||
return $resolvedName;
|
||||
} elseif ($this->parent instanceof CallExpression) { // TODO how to handle scoped method calls?
|
||||
$resolvedName = $this->tryResolveFromImportTable($functionImportTable);
|
||||
if ($this->getNamespaceDefinition()->name === null) {
|
||||
$resolvedName = $resolvedName ?? ResolvedName::buildName($this->nameParts->children, $this->getFileContents());
|
||||
$resolvedName = $resolvedName ?? ResolvedName::buildName($this->nameParts, $this->getFileContents());
|
||||
}
|
||||
return $resolvedName;
|
||||
}
|
||||
|
@ -131,7 +131,7 @@ class QualifiedName extends Node implements NamespacedNameInterface {
|
|||
}
|
||||
|
||||
public function getLastNamePart() {
|
||||
$parts = $this->nameParts->children;
|
||||
$parts = $this->nameParts;
|
||||
for ($i = \count($parts) - 1; $i >= 0; $i--) {
|
||||
// TODO - also handle reserved word tokens
|
||||
if ($parts[$i]->kind === TokenKind::Name) {
|
||||
|
@ -148,13 +148,13 @@ class QualifiedName extends Node implements NamespacedNameInterface {
|
|||
*/
|
||||
private function tryResolveFromImportTable($importTable, bool $isCaseSensitive = false) {
|
||||
$content = $this->getFileContents();
|
||||
$index = $this->nameParts->children[0]->getText($content);
|
||||
$index = $this->nameParts[0]->getText($content);
|
||||
if (!$isCaseSensitive) {
|
||||
$index = strtolower($index);
|
||||
}
|
||||
if(isset($importTable[$index])) {
|
||||
$resolvedName = $importTable[$index];
|
||||
$resolvedName->addNameParts(\array_slice($this->nameParts->children, 1), $content);
|
||||
$resolvedName->addNameParts(\array_slice($this->nameParts, 1), $content);
|
||||
return $resolvedName;
|
||||
}
|
||||
return null;
|
||||
|
@ -172,6 +172,6 @@ class QualifiedName extends Node implements NamespacedNameInterface {
|
|||
}
|
||||
|
||||
public function getNameParts() : array {
|
||||
return $this->nameParts->children;
|
||||
return $this->nameParts;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1171,6 +1171,7 @@ class Parser {
|
|||
if ($node->nameParts === null && $node->globalSpecifier === null && $node->relativeSpecifier === null) {
|
||||
return null;
|
||||
}
|
||||
$node->nameParts = $node->nameParts->children;
|
||||
return $node;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -67,16 +67,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"semicolon": {
|
||||
|
|
|
@ -19,16 +19,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 2
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 2
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": {
|
||||
|
|
|
@ -19,16 +19,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": {
|
||||
|
|
|
@ -19,16 +19,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 2
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 2
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": {
|
||||
|
|
|
@ -23,16 +23,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 7
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 7
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"closeParen": {
|
||||
|
|
|
@ -32,16 +32,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,24 +35,20 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -62,16 +62,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"operator": {
|
||||
|
@ -128,16 +124,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -36,16 +36,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 11
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 11
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -36,16 +36,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 11
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 11
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -56,16 +52,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 12
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 12
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -36,16 +36,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 11
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 11
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -56,16 +52,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 12
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 12
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
@ -39,24 +39,20 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 11
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 11
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -97,16 +97,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 8
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 8
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": {
|
||||
|
|
|
@ -99,16 +99,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 8
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 8
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": {
|
||||
|
|
|
@ -115,16 +115,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 8
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 8
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": {
|
||||
|
|
|
@ -39,16 +39,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -67,16 +67,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"semicolon": {
|
||||
|
|
|
@ -52,16 +52,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"byRefToken": {
|
||||
|
|
|
@ -52,16 +52,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"byRefToken": null,
|
||||
|
|
|
@ -52,16 +52,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"byRefToken": null,
|
||||
|
|
|
@ -52,16 +52,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"byRefToken": null,
|
||||
|
|
|
@ -52,16 +52,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"byRefToken": null,
|
||||
|
|
|
@ -35,16 +35,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 7
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 7
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"byRefToken": null,
|
||||
|
|
|
@ -25,16 +25,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 7
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 7
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"operator": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -34,16 +34,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -34,16 +34,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -54,16 +50,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -37,24 +37,20 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -21,12 +21,7 @@
|
|||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
"interfaceBaseClause": {
|
||||
"InterfaceBaseClause": {
|
||||
"extendsKeyword": null,
|
||||
"interfaceNameList": null
|
||||
}
|
||||
},
|
||||
"interfaceBaseClause": null,
|
||||
"interfaceMembers": {
|
||||
"InterfaceMembers": {
|
||||
"openBrace": {
|
||||
|
|
|
@ -129,16 +129,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": {
|
||||
|
|
|
@ -17,16 +17,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 5
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 5
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"semicolon": {
|
||||
|
|
|
@ -21,16 +21,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"compoundStatementOrSemicolon": {
|
||||
|
|
|
@ -21,24 +21,20 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"compoundStatementOrSemicolon": {
|
||||
|
|
|
@ -28,16 +28,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 5
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 5
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"semicolon": {
|
||||
|
|
|
@ -25,24 +25,20 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
|
|
@ -28,28 +28,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -67,16 +63,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null
|
||||
|
|
|
@ -28,28 +28,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -67,16 +63,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null
|
||||
|
@ -93,16 +85,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null
|
||||
|
|
|
@ -28,28 +28,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -67,16 +63,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null
|
||||
|
@ -93,16 +85,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null
|
||||
|
|
|
@ -28,28 +28,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -67,16 +63,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -28,28 +28,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -67,16 +63,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
@ -104,16 +96,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -28,28 +28,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -70,16 +66,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
@ -107,16 +99,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -28,28 +28,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -70,16 +66,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
@ -107,16 +99,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -25,28 +25,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -67,16 +63,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
@ -104,16 +96,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -25,24 +25,20 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
@ -76,16 +72,12 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"semicolon": {
|
||||
|
|
|
@ -25,24 +25,20 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
|
|
@ -25,24 +25,20 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
|
|
@ -25,28 +25,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
|
|
@ -25,28 +25,24 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -64,16 +60,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -33,24 +33,20 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
|
|
@ -25,16 +25,12 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
|
|
@ -22,20 +22,16 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": null,
|
||||
|
@ -53,16 +49,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -58,16 +58,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -25,24 +25,20 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -25,24 +25,20 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
@ -76,16 +72,12 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"semicolon": {
|
||||
|
|
|
@ -25,24 +25,20 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -22,24 +22,20 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -25,24 +25,20 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -33,24 +33,20 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -33,24 +33,20 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"namespaceAliasingClause": {
|
||||
|
|
|
@ -63,16 +63,12 @@
|
|||
"textLength": 1
|
||||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"compoundStatementOrSemicolon": {
|
||||
|
|
|
@ -60,16 +60,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"compoundStatementOrSemicolon": {
|
||||
|
|
|
@ -71,16 +71,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"compoundStatementOrSemicolon": {
|
||||
|
|
|
@ -60,32 +60,28 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 10
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 10
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 10
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 10
|
||||
},
|
||||
{
|
||||
"kind": "BackslashToken",
|
||||
"textLength": 1
|
||||
},
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"compoundStatementOrSemicolon": {
|
||||
|
|
|
@ -23,16 +23,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": {
|
||||
|
|
|
@ -62,16 +62,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -58,16 +58,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -85,16 +81,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -62,16 +62,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -104,16 +100,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openBracketOrBrace": {
|
||||
|
|
|
@ -23,16 +23,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": null,
|
||||
|
|
|
@ -42,16 +42,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,16 +30,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 3
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 3
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"semicolon": {
|
||||
|
|
|
@ -38,16 +38,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"openParen": {
|
||||
|
|
|
@ -27,16 +27,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 3
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 3
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"semicolon": {
|
||||
|
|
|
@ -19,16 +19,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -23,16 +23,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -28,16 +28,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -30,16 +30,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -25,16 +25,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 9
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -21,16 +21,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -21,16 +21,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -19,16 +19,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -21,16 +21,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 6
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -21,16 +21,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -21,16 +21,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -21,16 +21,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 4
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"doubleColon": {
|
||||
|
|
|
@ -31,16 +31,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"semicolon": {
|
||||
|
|
|
@ -41,16 +41,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -69,16 +65,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"asOrInsteadOfKeyword": {
|
||||
|
@ -90,16 +82,12 @@
|
|||
"QualifiedName": {
|
||||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"nameParts": [
|
||||
{
|
||||
"kind": "Name",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче