extract QualifiedNameParts
This commit is contained in:
Родитель
b8b059b1af
Коммит
7b066ec6fb
|
@ -9,7 +9,7 @@ use PhpParser\NodeKind;
|
|||
use PhpParser\Token;
|
||||
|
||||
class DelimitedList extends Node {
|
||||
/** @var Node[] */
|
||||
/** @var Token[]|Node[] */
|
||||
public $children;
|
||||
|
||||
public function __construct($nodeKind = NodeKind::DelimitedList) {
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
namespace PhpParser\Node\DelimitedList;
|
||||
use PhpParser\Node\DelimitedList;
|
||||
use PhpParser\NodeKind;
|
||||
|
||||
class QualifiedNameParts extends DelimitedList {
|
||||
public function __construct() {
|
||||
parent::__construct(NodeKind::QualifiedNameParts);
|
||||
}
|
||||
}
|
|
@ -106,4 +106,5 @@ class NodeKind {
|
|||
const AssignmentExpression = 96;
|
||||
const InlineHtml = 97;
|
||||
const UseVariableNameList = 98;
|
||||
const QualifiedNameParts = 99;
|
||||
}
|
|
@ -34,6 +34,7 @@ use PhpParser\Node\ClassNode;
|
|||
use PhpParser\Node\CloneExpression;
|
||||
use PhpParser\Node\ConstDeclaration;
|
||||
use PhpParser\Node\ConstElement;
|
||||
use PhpParser\Node\DelimitedList\QualifiedNameParts;
|
||||
use PhpParser\Node\FunctionStaticDeclaration;
|
||||
use PhpParser\Node\GlobalDeclaration;
|
||||
use PhpParser\Node\InlineHtml;
|
||||
|
@ -1117,7 +1118,7 @@ class Parser {
|
|||
: $this->eat($this->nameOrStaticOrReservedWordTokens); // TODO support keyword name
|
||||
$name->kind = TokenKind::Name; // bool/true/null/static should not be treated as keywords in this case
|
||||
return $name;
|
||||
}, $node);
|
||||
}, $node, false, QualifiedNameParts::class);
|
||||
if ($node->nameParts === null && $node->globalSpecifier === null && $node->relativeSpecifier === null) {
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -127,7 +127,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -57,7 +57,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -57,7 +57,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -98,7 +98,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -98,7 +98,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -116,7 +116,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -55,7 +55,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -130,7 +130,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -68,7 +68,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -68,7 +68,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -94,7 +94,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -68,7 +68,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -94,7 +94,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -68,7 +68,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -68,7 +68,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -105,7 +105,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -71,7 +71,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -108,7 +108,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -71,7 +71,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -108,7 +108,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -68,7 +68,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -105,7 +105,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -77,7 +77,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -65,7 +65,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -54,7 +54,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -77,7 +77,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
},
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
}
|
||||
},
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -91,7 +91,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -91,7 +91,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -115,7 +115,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -136,7 +136,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -99,7 +99,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -91,7 +91,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -72,7 +72,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -103,7 +103,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -93,7 +93,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -72,7 +72,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -111,7 +111,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -96,7 +96,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -100,7 +100,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -78,7 +78,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -62,7 +62,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -62,7 +62,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -62,7 +62,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -70,7 +70,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
@ -91,7 +91,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
"globalSpecifier": null,
|
||||
"relativeSpecifier": null,
|
||||
"nameParts": {
|
||||
"DelimitedList": {
|
||||
"QualifiedNameParts": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "Name",
|
||||
|
|
Загрузка…
Ссылка в новой задаче