update EmptyStatementNode definition

This commit is contained in:
Sara Itani 2016-12-28 16:01:50 -05:00
Родитель 4056dab4ae
Коммит ebdec8c306
84 изменённых файлов: 570 добавлений и 852 удалений

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

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