This commit is contained in:
Sara Itani 2017-03-05 15:59:19 -08:00
Родитель 7d66f9a6f9
Коммит ec5dd42da2
119 изменённых файлов: 1129 добавлений и 1832 удалений

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

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

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше