realign alias keys data

This commit is contained in:
Sebastian McKenzie 2015-03-26 01:00:12 +11:00
parent ce25ebacbf
commit 1e019c0f16

View File

@ -1,23 +1,23 @@
{ {
"ExpressionStatement": ["Statement"], "ExpressionStatement": ["Statement"],
"BreakStatement": ["Statement"], "BreakStatement": ["Statement"],
"ContinueStatement": ["Statement"], "ContinueStatement": ["Statement"],
"DebuggerStatement": ["Statement"], "DebuggerStatement": ["Statement"],
"DoWhileStatement": ["Statement", "Loop", "While", "Scopable"], "DoWhileStatement": ["Statement", "Loop", "While", "Scopable"],
"IfStatement": ["Statement"], "IfStatement": ["Statement"],
"ReturnStatement": ["Statement"], "ReturnStatement": ["Statement"],
"SwitchStatement": ["Statement"], "SwitchStatement": ["Statement"],
"ThrowStatement": ["Statement"], "ThrowStatement": ["Statement"],
"TryStatement": ["Statement"], "TryStatement": ["Statement"],
"WhileStatement": ["Statement", "Loop", "While", "Scopable"], "WhileStatement": ["Statement", "Loop", "While", "Scopable"],
"WithStatement": ["Statement"], "WithStatement": ["Statement"],
"EmptyStatement": ["Statement"], "EmptyStatement": ["Statement"],
"LabeledStatement": ["Statement"], "LabeledStatement": ["Statement"],
"VariableDeclaration": ["Statement", "Declaration"], "VariableDeclaration": ["Statement", "Declaration"],
"ExportAllDeclaration": ["Statement", "Declaration", "ModuleDeclaration", "ExportDeclaration"], "ExportAllDeclaration": ["Statement", "Declaration", "ModuleDeclaration", "ExportDeclaration"],
"ExportDefaultDeclaration": ["Statement", "Declaration", "ModuleDeclaration", "ExportDeclaration"], "ExportDefaultDeclaration": ["Statement", "Declaration", "ModuleDeclaration", "ExportDeclaration"],
"ExportNamedDeclaration": ["Statement", "Declaration", "ModuleDeclaration", "ExportDeclaration"], "ExportNamedDeclaration": ["Statement", "Declaration", "ModuleDeclaration", "ExportDeclaration"],
"ImportDeclaration": ["Statement", "Declaration", "ModuleDeclaration"], "ImportDeclaration": ["Statement", "Declaration", "ModuleDeclaration"],
"ArrowFunctionExpression": ["Scopable", "Function", "Expression"], "ArrowFunctionExpression": ["Scopable", "Function", "Expression"],
"FunctionDeclaration": ["Scopable", "Function", "Statement", "Declaration"], "FunctionDeclaration": ["Scopable", "Function", "Statement", "Declaration"],