rename node kind properties to be consistent with class names

This commit is contained in:
Sara Itani 2017-01-16 12:18:12 -08:00
Родитель 4afef59e5c
Коммит a80f168542
171 изменённых файлов: 388 добавлений и 314 удалений

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

@ -25,6 +25,6 @@ class CatchClause extends Node {
public $compoundStatement;
public function __construct() {
parent::__construct(NodeKind::CatchClauseNode);
parent::__construct(NodeKind::CatchClause);
}
}

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

@ -19,6 +19,6 @@ class DeclareDirective extends Node {
public $literal;
public function __construct() {
parent::__construct(NodeKind::DeclareDirectiveNode);
parent::__construct(NodeKind::DeclareDirective);
}
}

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

@ -16,6 +16,6 @@ class ScriptInclusionExpression extends Expression {
public $expression;
public function __construct() {
parent::__construct(NodeKind::ScriptInclusionExpressoin);
parent::__construct(NodeKind::ScriptInclusionExpression);
}
}

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

@ -8,7 +8,7 @@ namespace PhpParser\Node\Expression
use PhpParser\NodeKind;
use PhpParser\Token;
class TemplateExpressionNode extends Node {
class TemplateExpression extends Node {
public $children;
public function __construct() {

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

@ -17,6 +17,6 @@ class FinallyClause extends Node {
public $compoundStatement;
public function __construct() {
parent::__construct(NodeKind::FinallyClauseNode);
parent::__construct(NodeKind::FinallyClause);
}
}

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

@ -17,6 +17,6 @@ class ForeachKey extends Node {
public $arrow;
public function __construct() {
parent::__construct(NodeKind::ForeachKeyNode);
parent::__construct(NodeKind::ForeachKey);
}
}

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

@ -17,6 +17,6 @@ class ForeachValue extends Node {
public $expression;
public function __construct() {
parent::__construct(NodeKind::ForeachValueNode);
parent::__construct(NodeKind::ForeachValue);
}
}

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

@ -18,6 +18,6 @@ class MethodDeclaration extends Node {
use FunctionHeader, FunctionReturnType, FunctionBody;
public function __construct() {
parent::__construct(NodeKind::MethodNode);
parent::__construct(NodeKind::MethodDeclaration);
}
}

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

@ -29,7 +29,7 @@ class Parameter extends Node {
public function __construct() {
parent::__construct(NodeKind::ParameterNode);
parent::__construct(NodeKind::Parameter);
}
public function isVariadic() {

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

@ -10,7 +10,7 @@ use PhpParser\Node;
use PhpParser\NodeKind;
use PhpParser\Token;
class Script extends Node {
class SourceFileNode extends Node {
/** @var string */
public $fileContents;

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

@ -18,6 +18,6 @@ class BreakOrContinueStatement extends StatementNode {
public $semicolon;
public function __construct() {
parent::__construct(NodeKind::BreakOrContinueStatementNode);
parent::__construct(NodeKind::BreakOrContinueStatement);
}
}

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

@ -34,6 +34,6 @@ class ClassDeclaration extends StatementNode {
public $classMembers;
public function __construct() {
parent::__construct(NodeKind::ClassNode);
parent::__construct(NodeKind::ClassDeclaration);
}
}

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

@ -30,6 +30,6 @@ class DeclareStatement extends StatementNode {
public $semicolon;
public function __construct() {
parent::__construct(NodeKind::DeclareStatementNode);
parent::__construct(NodeKind::DeclareStatement);
}
}

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

@ -27,6 +27,6 @@ class DoStatement extends StatementNode {
public $semicolon;
public function __construct() {
parent::__construct(NodeKind::DoWhileStatementNode);
parent::__construct(NodeKind::DoStatement);
}
}

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

@ -9,7 +9,7 @@ use PhpParser\Node\StatementNode;
use PhpParser\NodeKind;
use PhpParser\Token;
class EmptyStatementNode extends StatementNode {
class EmptyStatement extends StatementNode {
/** @var Token */
public $semicolon;

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

@ -37,6 +37,6 @@ class ForStatement extends StatementNode {
public $endForSemicolon;
public function __construct() {
parent::__construct(NodeKind::ForStatementNode);
parent::__construct(NodeKind::ForStatement);
}
}

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

@ -37,6 +37,6 @@ class ForeachStatement extends StatementNode {
public $endForeachSemicolon;
public function __construct() {
parent::__construct(NodeKind::ForeachStatementNode);
parent::__construct(NodeKind::ForeachStatement);
}
}

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

@ -18,6 +18,6 @@ class FunctionDeclaration extends StatementNode {
use FunctionHeader, FunctionReturnType, FunctionBody;
public function __construct() {
parent::__construct(NodeKind::FunctionNode);
parent::__construct(NodeKind::FunctionDeclaration);
}
}

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

@ -18,6 +18,6 @@ class GotoStatement extends StatementNode {
public $semicolon;
public function __construct() {
parent::__construct(NodeKind::GotoStatementNode);
parent::__construct(NodeKind::GotoStatement);
}
}

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

@ -9,7 +9,7 @@ use PhpParser\Node\StatementNode;
use PhpParser\NodeKind;
use PhpParser\Token;
class NamedLabelStatementNode extends StatementNode {
class NamedLabelStatement extends StatementNode {
/** @var Token */
public $name;
/** @var Token */

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

@ -29,6 +29,6 @@ class WhileStatement extends StatementNode {
public $semicolon;
public function __construct() {
parent::__construct(NodeKind::WhileStatementNode);
parent::__construct(NodeKind::WhileStatement);
}
}

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

@ -8,20 +8,20 @@ namespace PhpParser;
class NodeKind {
const SourceFileNode = 0;
const ClassNode = 1;
const ClassDeclaration = 1;
const BlockNode = 2;
const CompoundStatementNode = 3;
const MethodNode = 4;
const MethodDeclaration = 4;
const StatementNode = 5;
const ClassMembersNode = 6;
const Count = 7;
const TemplateExpression = 8;
const EmptyStatement = 9;
const FunctionNode = 10;
const FunctionDeclaration = 10;
const DelimitedList = 11;
const Expression = 12;
const Name = 13;
const ParameterNode = 14;
const Parameter = 14;
const QualifiedName = 15;
const RelativeSpecifier = 16;
const ScriptSection = 17;
@ -32,20 +32,20 @@ class NodeKind {
const CaseStatementNode = 22;
const DefaultStatementNode = 23;
const SwitchStatementNode = 24;
const WhileStatementNode = 25;
const DoWhileStatementNode = 26;
const ForStatementNode = 27;
const ForeachStatementNode = 28;
const ForeachKeyNode = 29;
const ForeachValueNode = 30;
const GotoStatementNode = 31;
const BreakOrContinueStatementNode = 32;
const WhileStatement = 25;
const DoStatement = 26;
const ForStatement = 27;
const ForeachStatement = 28;
const ForeachKey = 29;
const ForeachValue = 30;
const GotoStatement = 31;
const BreakOrContinueStatement = 32;
const ReturnStatement = 33;
const ThrowStatement = 34;
const CatchClauseNode = 35;
const FinallyClauseNode = 36;
const DeclareStatementNode = 37;
const DeclareDirectiveNode = 38;
const CatchClause = 35;
const FinallyClause = 36;
const DeclareStatement = 37;
const DeclareDirective = 38;
const Variable = 39;
const ExpressionStatement = 40;
const EchoExpression = 41;
@ -84,7 +84,7 @@ class NodeKind {
const InterfaceDeclaration = 74;
const InterfaceBaseClause = 75;
const InterfaceMembers = 76;
const ScriptInclusionExpressoin = 77;
const ScriptInclusionExpression = 77;
const NamespaceDefinition = 78;
const NamespaceUseDeclaration = 79;
const NamespaceAliasingClause = 80;

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

@ -40,7 +40,7 @@ use PhpParser\Node\Expression\{
PostfixUpdateExpression,
ScopedPropertyAccessExpression,
SubscriptExpression,
TemplateExpressionNode,
TemplateExpression,
TernaryExpression,
UnaryExpression,
UnaryOpExpression,
@ -70,7 +70,7 @@ use PhpParser\Node;
use PhpParser\Node\Parameter;
use PhpParser\Node\QualifiedName;
use PhpParser\Node\RelativeSpecifier;
use PhpParser\Node\Script;
use PhpParser\Node\SourceFileNode;
use PhpParser\Node\Statement\{
ClassDeclaration,
ConstDeclaration,
@ -80,7 +80,7 @@ use PhpParser\Node\Statement\{
BreakOrContinueStatement,
DeclareStatement,
DoStatement,
EmptyStatementNode,
EmptyStatement,
ExpressionStatement,
ForeachStatement,
ForStatement,
@ -91,7 +91,7 @@ use PhpParser\Node\Statement\{
InterfaceDeclaration,
NamespaceDefinition,
NamespaceUseDeclaration,
NamedLabelStatementNode,
NamedLabelStatement,
ReturnStatement,
SwitchStatementNode,
ThrowStatement,
@ -133,12 +133,12 @@ class Parser {
$this->returnTypeDeclarationTokens = \array_merge([TokenKind::VoidReservedWord], $this->parameterTypeDeclarationTokens);
}
public function parseSourceFile($fileContents) : Script {
public function parseSourceFile($fileContents) : SourceFileNode {
$this->lexer = TokenStreamProviderFactory::GetTokenStreamProvider($fileContents);
$this->reset();
$sourceFile = new Script();
$sourceFile = new SourceFileNode();
$this->sourceFile = & $sourceFile;
$sourceFile->fileContents = $fileContents;
$sourceFile->statementList = array();
@ -843,7 +843,7 @@ class Parser {
}
private function parseTemplateString($parentNode) {
$templateNode = new TemplateExpressionNode();
$templateNode = new TemplateExpression();
$templateNode->parent = $parentNode;
$templateNode->children = array();
do {
@ -968,7 +968,7 @@ class Parser {
}
private function parseEmptyStatement($parentNode) {
$emptyStatement = new EmptyStatementNode();
$emptyStatement = new EmptyStatement();
$emptyStatement->parent = $parentNode;
$emptyStatement->semicolon = $this->eat(TokenKind::SemicolonToken);
return $emptyStatement;
@ -1224,7 +1224,7 @@ class Parser {
}
private function parseNamedLabelStatement($parentNode) {
$namedLabelStatement = new NamedLabelStatementNode();
$namedLabelStatement = new NamedLabelStatement();
$namedLabelStatement->parent = $parentNode;
$namedLabelStatement->name = $this->eat(TokenKind::Name);
$namedLabelStatement->colon = $this->eat(TokenKind::ColonToken);

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

@ -49,7 +49,7 @@ class Utilities {
if ($node instanceof Node) {
switch ($node->kind) {
case NodeKind::MethodNode:
case NodeKind::MethodDeclaration:
foreach ($node->modifiers as $modifier) {
if ($modifier->kind === TokenKind::VarKeyword) {
yield new Diagnostic(

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": {
"kind": "AbstractKeyword",
"textLength": 8
@ -35,7 +35,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "PublicKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",
@ -32,7 +32,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "PublicKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": {
"kind": "AbstractKeyword",
"textLength": 8
@ -35,7 +35,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "PublicKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"FunctionNode": {
"FunctionDeclaration": {
"functionKeyword": {
"kind": "FunctionKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": {
"kind": "AbstractKeyword",
"textLength": 8
@ -35,7 +35,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "AbstractKeyword",

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

@ -17,7 +17,7 @@
"textLength": 6
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": {
"kind": "AbstractKeyword",
"textLength": 8
@ -40,7 +40,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "AbstractKeyword",

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

@ -17,7 +17,7 @@
"textLength": 8
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": {
"kind": "FinalKeyword",
"textLength": 5
@ -40,7 +40,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [],
"functionKeyword": {
"kind": "FunctionKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "BreakKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "BreakKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -78,7 +78,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -111,7 +111,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "BreakKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -78,7 +78,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -111,7 +111,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "BreakKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -78,7 +78,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "BreakKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -78,7 +78,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "BreakKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "BreakKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "BreakKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "BreakKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",
@ -32,7 +32,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "PublicKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",
@ -32,7 +32,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "PublicKeyword",
@ -56,7 +56,7 @@
"ParameterDeclarationList": {
"children": [
{
"ParameterNode": {
"Parameter": {
"typeDeclaration": null,
"byRefToken": null,
"dotDotDotToken": null,
@ -73,7 +73,7 @@
"textLength": 1
},
{
"ParameterNode": {
"Parameter": {
"typeDeclaration": null,
"byRefToken": null,
"dotDotDotToken": null,

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",
@ -32,7 +32,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "PublicKeyword",
@ -56,7 +56,7 @@
"ParameterDeclarationList": {
"children": [
{
"ParameterNode": {
"Parameter": {
"typeDeclaration": null,
"byRefToken": null,
"dotDotDotToken": null,
@ -73,7 +73,7 @@
"textLength": 1
},
{
"ParameterNode": {
"Parameter": {
"typeDeclaration": null,
"byRefToken": null,
"dotDotDotToken": null,

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",
@ -32,7 +32,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "PublicKeyword",
@ -76,7 +76,7 @@
}
},
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "PublicKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"ClassNode": {
"ClassDeclaration": {
"abstractOrFinalModifier": null,
"classKeyword": {
"kind": "ClassKeyword",
@ -32,7 +32,7 @@
},
"classMemberDeclarations": [
{
"MethodNode": {
"MethodDeclaration": {
"modifiers": [
{
"kind": "PublicKeyword",

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

@ -12,7 +12,7 @@
}
},
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "ContinueKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "ContinueKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -78,7 +78,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -111,7 +111,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "ContinueKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -78,7 +78,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -111,7 +111,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "ContinueKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -78,7 +78,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "ContinueKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -78,7 +78,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "ContinueKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "ContinueKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "ContinueKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -45,7 +45,7 @@
},
"statements": [
{
"BreakOrContinueStatementNode": {
"BreakOrContinueStatement": {
"breakOrContinueKeyword": {
"kind": "ContinueKeyword",
"textLength": 8

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5
@ -43,7 +43,7 @@
},
"colon": null,
"statements": {
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"error": "MissingToken",
"kind": "Name",

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 2

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DeclareStatementNode": {
"DeclareStatement": {
"declareKeyword": {
"kind": "DeclareKeyword",
"textLength": 7
@ -22,7 +22,7 @@
"textLength": 1
},
"declareDirective": {
"DeclareDirectiveNode": {
"DeclareDirective": {
"name": {
"kind": "Name",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DoWhileStatementNode": {
"DoStatement": {
"do": {
"kind": "DoKeyword",
"textLength": 2

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

@ -12,7 +12,7 @@
}
},
{
"DoWhileStatementNode": {
"DoStatement": {
"do": {
"kind": "DoKeyword",
"textLength": 2
@ -41,7 +41,7 @@
}
},
{
"WhileStatementNode": {
"WhileStatement": {
"whileToken": {
"kind": "WhileKeyword",
"textLength": 5

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

@ -12,7 +12,7 @@
}
},
{
"DoWhileStatementNode": {
"DoStatement": {
"do": {
"kind": "DoKeyword",
"textLength": 2

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

@ -12,7 +12,7 @@
}
},
{
"DoWhileStatementNode": {
"DoStatement": {
"do": {
"kind": "DoKeyword",
"textLength": 2

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

@ -12,7 +12,7 @@
}
},
{
"DoWhileStatementNode": {
"DoStatement": {
"do": {
"kind": "DoKeyword",
"textLength": 2

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3
@ -80,7 +80,7 @@
},
"colon": null,
"statements": {
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3

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

@ -12,7 +12,7 @@
}
},
{
"ForStatementNode": {
"ForStatement": {
"for": {
"kind": "ForKeyword",
"textLength": 3

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

@ -12,7 +12,7 @@
}
},
{
"ForeachStatementNode": {
"ForeachStatement": {
"foreach": {
"kind": "ForeachKeyword",
"textLength": 7
@ -36,7 +36,7 @@
},
"foreachKey": null,
"foreachValue": {
"ForeachValueNode": {
"ForeachValue": {
"ampersand": null,
"expression": {
"Variable": {

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

@ -12,7 +12,7 @@
}
},
{
"ForeachStatementNode": {
"ForeachStatement": {
"foreach": {
"kind": "ForeachKeyword",
"textLength": 7
@ -36,7 +36,7 @@
},
"foreachKey": null,
"foreachValue": {
"ForeachValueNode": {
"ForeachValue": {
"ampersand": null,
"expression": {
"Variable": {

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

@ -12,7 +12,7 @@
}
},
{
"ForeachStatementNode": {
"ForeachStatement": {
"foreach": {
"kind": "ForeachKeyword",
"textLength": 7
@ -35,7 +35,7 @@
"textLength": 2
},
"foreachKey": {
"ForeachKeyNode": {
"ForeachKey": {
"expression": {
"Variable": {
"dollar": null,
@ -52,7 +52,7 @@
}
},
"foreachValue": {
"ForeachValueNode": {
"ForeachValue": {
"ampersand": null,
"expression": {
"Variable": {

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