update EmptyStatementNode definition
This commit is contained in:
Родитель
4056dab4ae
Коммит
ebdec8c306
|
@ -10,7 +10,8 @@ use PhpParser\NodeKind;
|
|||
use PhpParser\Token;
|
||||
|
||||
class EmptyStatementNode extends StatementNode {
|
||||
public $children;
|
||||
/** @var Token */
|
||||
public $semicolon;
|
||||
|
||||
public function __construct() {
|
||||
parent::__construct(NodeKind::EmptyStatement);
|
||||
|
|
|
@ -955,11 +955,10 @@ class Parser {
|
|||
}
|
||||
|
||||
private function parseEmptyStatement($parentNode) {
|
||||
$node = new EmptyStatementNode();
|
||||
$node->children = array();
|
||||
array_push($node->children, $this->eat(TokenKind::SemicolonToken));
|
||||
$node->parent = $parentNode;
|
||||
return $node;
|
||||
$emptyStatement = new EmptyStatementNode();
|
||||
$emptyStatement->parent = $parentNode;
|
||||
$emptyStatement->semicolon = $this->eat(TokenKind::SemicolonToken);
|
||||
return $emptyStatement;
|
||||
}
|
||||
|
||||
private function parseStringLiteralExpression($parentNode) {
|
||||
|
|
|
@ -43,12 +43,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -89,12 +89,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -92,12 +92,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -109,22 +109,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -20,22 +20,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -20,22 +20,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -54,22 +50,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -51,12 +51,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -91,12 +91,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -66,12 +66,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -51,22 +51,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -48,22 +48,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -48,22 +48,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -48,22 +48,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -48,22 +48,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -52,12 +52,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -51,12 +51,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -52,12 +52,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -26,22 +26,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -26,22 +26,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -70,12 +66,10 @@
|
|||
"colon": null,
|
||||
"statements": {
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"endWhile": null,
|
||||
|
|
|
@ -26,22 +26,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -26,22 +26,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -26,22 +26,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -76,12 +76,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -76,12 +76,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -76,12 +76,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -76,12 +76,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -81,12 +81,10 @@
|
|||
"colon": null,
|
||||
"statements": {
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"endFor": null,
|
||||
|
@ -95,12 +93,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -107,12 +107,10 @@
|
|||
"colon": null,
|
||||
"statements": {
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"endFor": null,
|
||||
|
@ -125,12 +123,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -85,22 +85,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -85,22 +85,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -86,22 +86,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -124,22 +124,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -63,22 +63,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -56,12 +56,10 @@
|
|||
"colon": null,
|
||||
"statements": {
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"endForeach": null,
|
||||
|
@ -70,12 +68,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -72,12 +72,10 @@
|
|||
"colon": null,
|
||||
"statements": {
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"endForeach": null,
|
||||
|
@ -86,12 +84,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -75,12 +75,10 @@
|
|||
"colon": null,
|
||||
"statements": {
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"endForeach": null,
|
||||
|
@ -89,12 +87,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -79,22 +79,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -72,22 +72,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -56,22 +56,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -78,22 +78,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -42,12 +42,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -48,12 +48,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -101,12 +101,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -42,32 +42,26 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -41,22 +41,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -41,22 +41,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -93,12 +89,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -139,12 +133,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -37,12 +37,10 @@
|
|||
"colon": null,
|
||||
"statements": {
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"elseIfClauses": [],
|
||||
|
@ -83,12 +81,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -44,12 +44,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -44,12 +44,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -100,12 +98,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -44,12 +44,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -44,12 +44,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -41,12 +41,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -41,22 +41,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -93,22 +89,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -41,22 +41,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -41,22 +41,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -41,12 +41,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -64,12 +62,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -92,12 +92,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -30,22 +30,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -33,12 +33,10 @@
|
|||
},
|
||||
"statement": {
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -41,12 +41,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -48,12 +48,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -72,12 +72,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -13,12 +13,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -16,12 +16,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -16,12 +16,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -42,12 +40,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -13,12 +13,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -13,12 +13,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -28,12 +26,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -57,12 +57,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -69,12 +69,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -86,12 +84,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -119,12 +115,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -144,12 +138,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -41,12 +41,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -54,12 +54,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -87,12 +85,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -62,12 +62,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -111,12 +109,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -54,12 +54,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -54,12 +54,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -54,12 +54,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -62,12 +62,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -62,12 +62,10 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -87,22 +85,18 @@
|
|||
"statementList": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
|
@ -26,12 +26,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -85,12 +83,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
@ -118,12 +114,10 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -55,12 +55,10 @@
|
|||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -44,22 +44,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -41,22 +41,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -41,22 +41,18 @@
|
|||
"statements": [
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"EmptyStatement": {
|
||||
"children": [
|
||||
{
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
]
|
||||
"semicolon": {
|
||||
"kind": "SemicolonToken",
|
||||
"textLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
Загрузка…
Ссылка в новой задаче