Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/wp-inclu.../js/codemirr...
File: esprima.js
return (cp >= 0x30 && cp <= 0x39); // 0..9
[1000] Fix | Delete
},
[1001] Fix | Delete
isHexDigit: function (cp) {
[1002] Fix | Delete
return (cp >= 0x30 && cp <= 0x39) ||
[1003] Fix | Delete
(cp >= 0x41 && cp <= 0x46) ||
[1004] Fix | Delete
(cp >= 0x61 && cp <= 0x66); // a..f
[1005] Fix | Delete
},
[1006] Fix | Delete
isOctalDigit: function (cp) {
[1007] Fix | Delete
return (cp >= 0x30 && cp <= 0x37); // 0..7
[1008] Fix | Delete
}
[1009] Fix | Delete
};
[1010] Fix | Delete
[1011] Fix | Delete
[1012] Fix | Delete
/***/ },
[1013] Fix | Delete
/* 5 */
[1014] Fix | Delete
/***/ function(module, exports, __webpack_require__) {
[1015] Fix | Delete
[1016] Fix | Delete
"use strict";
[1017] Fix | Delete
Object.defineProperty(exports, "__esModule", { value: true });
[1018] Fix | Delete
var jsx_syntax_1 = __webpack_require__(6);
[1019] Fix | Delete
/* tslint:disable:max-classes-per-file */
[1020] Fix | Delete
var JSXClosingElement = (function () {
[1021] Fix | Delete
function JSXClosingElement(name) {
[1022] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXClosingElement;
[1023] Fix | Delete
this.name = name;
[1024] Fix | Delete
}
[1025] Fix | Delete
return JSXClosingElement;
[1026] Fix | Delete
}());
[1027] Fix | Delete
exports.JSXClosingElement = JSXClosingElement;
[1028] Fix | Delete
var JSXElement = (function () {
[1029] Fix | Delete
function JSXElement(openingElement, children, closingElement) {
[1030] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXElement;
[1031] Fix | Delete
this.openingElement = openingElement;
[1032] Fix | Delete
this.children = children;
[1033] Fix | Delete
this.closingElement = closingElement;
[1034] Fix | Delete
}
[1035] Fix | Delete
return JSXElement;
[1036] Fix | Delete
}());
[1037] Fix | Delete
exports.JSXElement = JSXElement;
[1038] Fix | Delete
var JSXEmptyExpression = (function () {
[1039] Fix | Delete
function JSXEmptyExpression() {
[1040] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXEmptyExpression;
[1041] Fix | Delete
}
[1042] Fix | Delete
return JSXEmptyExpression;
[1043] Fix | Delete
}());
[1044] Fix | Delete
exports.JSXEmptyExpression = JSXEmptyExpression;
[1045] Fix | Delete
var JSXExpressionContainer = (function () {
[1046] Fix | Delete
function JSXExpressionContainer(expression) {
[1047] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXExpressionContainer;
[1048] Fix | Delete
this.expression = expression;
[1049] Fix | Delete
}
[1050] Fix | Delete
return JSXExpressionContainer;
[1051] Fix | Delete
}());
[1052] Fix | Delete
exports.JSXExpressionContainer = JSXExpressionContainer;
[1053] Fix | Delete
var JSXIdentifier = (function () {
[1054] Fix | Delete
function JSXIdentifier(name) {
[1055] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXIdentifier;
[1056] Fix | Delete
this.name = name;
[1057] Fix | Delete
}
[1058] Fix | Delete
return JSXIdentifier;
[1059] Fix | Delete
}());
[1060] Fix | Delete
exports.JSXIdentifier = JSXIdentifier;
[1061] Fix | Delete
var JSXMemberExpression = (function () {
[1062] Fix | Delete
function JSXMemberExpression(object, property) {
[1063] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXMemberExpression;
[1064] Fix | Delete
this.object = object;
[1065] Fix | Delete
this.property = property;
[1066] Fix | Delete
}
[1067] Fix | Delete
return JSXMemberExpression;
[1068] Fix | Delete
}());
[1069] Fix | Delete
exports.JSXMemberExpression = JSXMemberExpression;
[1070] Fix | Delete
var JSXAttribute = (function () {
[1071] Fix | Delete
function JSXAttribute(name, value) {
[1072] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXAttribute;
[1073] Fix | Delete
this.name = name;
[1074] Fix | Delete
this.value = value;
[1075] Fix | Delete
}
[1076] Fix | Delete
return JSXAttribute;
[1077] Fix | Delete
}());
[1078] Fix | Delete
exports.JSXAttribute = JSXAttribute;
[1079] Fix | Delete
var JSXNamespacedName = (function () {
[1080] Fix | Delete
function JSXNamespacedName(namespace, name) {
[1081] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXNamespacedName;
[1082] Fix | Delete
this.namespace = namespace;
[1083] Fix | Delete
this.name = name;
[1084] Fix | Delete
}
[1085] Fix | Delete
return JSXNamespacedName;
[1086] Fix | Delete
}());
[1087] Fix | Delete
exports.JSXNamespacedName = JSXNamespacedName;
[1088] Fix | Delete
var JSXOpeningElement = (function () {
[1089] Fix | Delete
function JSXOpeningElement(name, selfClosing, attributes) {
[1090] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXOpeningElement;
[1091] Fix | Delete
this.name = name;
[1092] Fix | Delete
this.selfClosing = selfClosing;
[1093] Fix | Delete
this.attributes = attributes;
[1094] Fix | Delete
}
[1095] Fix | Delete
return JSXOpeningElement;
[1096] Fix | Delete
}());
[1097] Fix | Delete
exports.JSXOpeningElement = JSXOpeningElement;
[1098] Fix | Delete
var JSXSpreadAttribute = (function () {
[1099] Fix | Delete
function JSXSpreadAttribute(argument) {
[1100] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXSpreadAttribute;
[1101] Fix | Delete
this.argument = argument;
[1102] Fix | Delete
}
[1103] Fix | Delete
return JSXSpreadAttribute;
[1104] Fix | Delete
}());
[1105] Fix | Delete
exports.JSXSpreadAttribute = JSXSpreadAttribute;
[1106] Fix | Delete
var JSXText = (function () {
[1107] Fix | Delete
function JSXText(value, raw) {
[1108] Fix | Delete
this.type = jsx_syntax_1.JSXSyntax.JSXText;
[1109] Fix | Delete
this.value = value;
[1110] Fix | Delete
this.raw = raw;
[1111] Fix | Delete
}
[1112] Fix | Delete
return JSXText;
[1113] Fix | Delete
}());
[1114] Fix | Delete
exports.JSXText = JSXText;
[1115] Fix | Delete
[1116] Fix | Delete
[1117] Fix | Delete
/***/ },
[1118] Fix | Delete
/* 6 */
[1119] Fix | Delete
/***/ function(module, exports) {
[1120] Fix | Delete
[1121] Fix | Delete
"use strict";
[1122] Fix | Delete
Object.defineProperty(exports, "__esModule", { value: true });
[1123] Fix | Delete
exports.JSXSyntax = {
[1124] Fix | Delete
JSXAttribute: 'JSXAttribute',
[1125] Fix | Delete
JSXClosingElement: 'JSXClosingElement',
[1126] Fix | Delete
JSXElement: 'JSXElement',
[1127] Fix | Delete
JSXEmptyExpression: 'JSXEmptyExpression',
[1128] Fix | Delete
JSXExpressionContainer: 'JSXExpressionContainer',
[1129] Fix | Delete
JSXIdentifier: 'JSXIdentifier',
[1130] Fix | Delete
JSXMemberExpression: 'JSXMemberExpression',
[1131] Fix | Delete
JSXNamespacedName: 'JSXNamespacedName',
[1132] Fix | Delete
JSXOpeningElement: 'JSXOpeningElement',
[1133] Fix | Delete
JSXSpreadAttribute: 'JSXSpreadAttribute',
[1134] Fix | Delete
JSXText: 'JSXText'
[1135] Fix | Delete
};
[1136] Fix | Delete
[1137] Fix | Delete
[1138] Fix | Delete
/***/ },
[1139] Fix | Delete
/* 7 */
[1140] Fix | Delete
/***/ function(module, exports, __webpack_require__) {
[1141] Fix | Delete
[1142] Fix | Delete
"use strict";
[1143] Fix | Delete
Object.defineProperty(exports, "__esModule", { value: true });
[1144] Fix | Delete
var syntax_1 = __webpack_require__(2);
[1145] Fix | Delete
/* tslint:disable:max-classes-per-file */
[1146] Fix | Delete
var ArrayExpression = (function () {
[1147] Fix | Delete
function ArrayExpression(elements) {
[1148] Fix | Delete
this.type = syntax_1.Syntax.ArrayExpression;
[1149] Fix | Delete
this.elements = elements;
[1150] Fix | Delete
}
[1151] Fix | Delete
return ArrayExpression;
[1152] Fix | Delete
}());
[1153] Fix | Delete
exports.ArrayExpression = ArrayExpression;
[1154] Fix | Delete
var ArrayPattern = (function () {
[1155] Fix | Delete
function ArrayPattern(elements) {
[1156] Fix | Delete
this.type = syntax_1.Syntax.ArrayPattern;
[1157] Fix | Delete
this.elements = elements;
[1158] Fix | Delete
}
[1159] Fix | Delete
return ArrayPattern;
[1160] Fix | Delete
}());
[1161] Fix | Delete
exports.ArrayPattern = ArrayPattern;
[1162] Fix | Delete
var ArrowFunctionExpression = (function () {
[1163] Fix | Delete
function ArrowFunctionExpression(params, body, expression) {
[1164] Fix | Delete
this.type = syntax_1.Syntax.ArrowFunctionExpression;
[1165] Fix | Delete
this.id = null;
[1166] Fix | Delete
this.params = params;
[1167] Fix | Delete
this.body = body;
[1168] Fix | Delete
this.generator = false;
[1169] Fix | Delete
this.expression = expression;
[1170] Fix | Delete
this.async = false;
[1171] Fix | Delete
}
[1172] Fix | Delete
return ArrowFunctionExpression;
[1173] Fix | Delete
}());
[1174] Fix | Delete
exports.ArrowFunctionExpression = ArrowFunctionExpression;
[1175] Fix | Delete
var AssignmentExpression = (function () {
[1176] Fix | Delete
function AssignmentExpression(operator, left, right) {
[1177] Fix | Delete
this.type = syntax_1.Syntax.AssignmentExpression;
[1178] Fix | Delete
this.operator = operator;
[1179] Fix | Delete
this.left = left;
[1180] Fix | Delete
this.right = right;
[1181] Fix | Delete
}
[1182] Fix | Delete
return AssignmentExpression;
[1183] Fix | Delete
}());
[1184] Fix | Delete
exports.AssignmentExpression = AssignmentExpression;
[1185] Fix | Delete
var AssignmentPattern = (function () {
[1186] Fix | Delete
function AssignmentPattern(left, right) {
[1187] Fix | Delete
this.type = syntax_1.Syntax.AssignmentPattern;
[1188] Fix | Delete
this.left = left;
[1189] Fix | Delete
this.right = right;
[1190] Fix | Delete
}
[1191] Fix | Delete
return AssignmentPattern;
[1192] Fix | Delete
}());
[1193] Fix | Delete
exports.AssignmentPattern = AssignmentPattern;
[1194] Fix | Delete
var AsyncArrowFunctionExpression = (function () {
[1195] Fix | Delete
function AsyncArrowFunctionExpression(params, body, expression) {
[1196] Fix | Delete
this.type = syntax_1.Syntax.ArrowFunctionExpression;
[1197] Fix | Delete
this.id = null;
[1198] Fix | Delete
this.params = params;
[1199] Fix | Delete
this.body = body;
[1200] Fix | Delete
this.generator = false;
[1201] Fix | Delete
this.expression = expression;
[1202] Fix | Delete
this.async = true;
[1203] Fix | Delete
}
[1204] Fix | Delete
return AsyncArrowFunctionExpression;
[1205] Fix | Delete
}());
[1206] Fix | Delete
exports.AsyncArrowFunctionExpression = AsyncArrowFunctionExpression;
[1207] Fix | Delete
var AsyncFunctionDeclaration = (function () {
[1208] Fix | Delete
function AsyncFunctionDeclaration(id, params, body) {
[1209] Fix | Delete
this.type = syntax_1.Syntax.FunctionDeclaration;
[1210] Fix | Delete
this.id = id;
[1211] Fix | Delete
this.params = params;
[1212] Fix | Delete
this.body = body;
[1213] Fix | Delete
this.generator = false;
[1214] Fix | Delete
this.expression = false;
[1215] Fix | Delete
this.async = true;
[1216] Fix | Delete
}
[1217] Fix | Delete
return AsyncFunctionDeclaration;
[1218] Fix | Delete
}());
[1219] Fix | Delete
exports.AsyncFunctionDeclaration = AsyncFunctionDeclaration;
[1220] Fix | Delete
var AsyncFunctionExpression = (function () {
[1221] Fix | Delete
function AsyncFunctionExpression(id, params, body) {
[1222] Fix | Delete
this.type = syntax_1.Syntax.FunctionExpression;
[1223] Fix | Delete
this.id = id;
[1224] Fix | Delete
this.params = params;
[1225] Fix | Delete
this.body = body;
[1226] Fix | Delete
this.generator = false;
[1227] Fix | Delete
this.expression = false;
[1228] Fix | Delete
this.async = true;
[1229] Fix | Delete
}
[1230] Fix | Delete
return AsyncFunctionExpression;
[1231] Fix | Delete
}());
[1232] Fix | Delete
exports.AsyncFunctionExpression = AsyncFunctionExpression;
[1233] Fix | Delete
var AwaitExpression = (function () {
[1234] Fix | Delete
function AwaitExpression(argument) {
[1235] Fix | Delete
this.type = syntax_1.Syntax.AwaitExpression;
[1236] Fix | Delete
this.argument = argument;
[1237] Fix | Delete
}
[1238] Fix | Delete
return AwaitExpression;
[1239] Fix | Delete
}());
[1240] Fix | Delete
exports.AwaitExpression = AwaitExpression;
[1241] Fix | Delete
var BinaryExpression = (function () {
[1242] Fix | Delete
function BinaryExpression(operator, left, right) {
[1243] Fix | Delete
var logical = (operator === '||' || operator === '&&');
[1244] Fix | Delete
this.type = logical ? syntax_1.Syntax.LogicalExpression : syntax_1.Syntax.BinaryExpression;
[1245] Fix | Delete
this.operator = operator;
[1246] Fix | Delete
this.left = left;
[1247] Fix | Delete
this.right = right;
[1248] Fix | Delete
}
[1249] Fix | Delete
return BinaryExpression;
[1250] Fix | Delete
}());
[1251] Fix | Delete
exports.BinaryExpression = BinaryExpression;
[1252] Fix | Delete
var BlockStatement = (function () {
[1253] Fix | Delete
function BlockStatement(body) {
[1254] Fix | Delete
this.type = syntax_1.Syntax.BlockStatement;
[1255] Fix | Delete
this.body = body;
[1256] Fix | Delete
}
[1257] Fix | Delete
return BlockStatement;
[1258] Fix | Delete
}());
[1259] Fix | Delete
exports.BlockStatement = BlockStatement;
[1260] Fix | Delete
var BreakStatement = (function () {
[1261] Fix | Delete
function BreakStatement(label) {
[1262] Fix | Delete
this.type = syntax_1.Syntax.BreakStatement;
[1263] Fix | Delete
this.label = label;
[1264] Fix | Delete
}
[1265] Fix | Delete
return BreakStatement;
[1266] Fix | Delete
}());
[1267] Fix | Delete
exports.BreakStatement = BreakStatement;
[1268] Fix | Delete
var CallExpression = (function () {
[1269] Fix | Delete
function CallExpression(callee, args) {
[1270] Fix | Delete
this.type = syntax_1.Syntax.CallExpression;
[1271] Fix | Delete
this.callee = callee;
[1272] Fix | Delete
this.arguments = args;
[1273] Fix | Delete
}
[1274] Fix | Delete
return CallExpression;
[1275] Fix | Delete
}());
[1276] Fix | Delete
exports.CallExpression = CallExpression;
[1277] Fix | Delete
var CatchClause = (function () {
[1278] Fix | Delete
function CatchClause(param, body) {
[1279] Fix | Delete
this.type = syntax_1.Syntax.CatchClause;
[1280] Fix | Delete
this.param = param;
[1281] Fix | Delete
this.body = body;
[1282] Fix | Delete
}
[1283] Fix | Delete
return CatchClause;
[1284] Fix | Delete
}());
[1285] Fix | Delete
exports.CatchClause = CatchClause;
[1286] Fix | Delete
var ClassBody = (function () {
[1287] Fix | Delete
function ClassBody(body) {
[1288] Fix | Delete
this.type = syntax_1.Syntax.ClassBody;
[1289] Fix | Delete
this.body = body;
[1290] Fix | Delete
}
[1291] Fix | Delete
return ClassBody;
[1292] Fix | Delete
}());
[1293] Fix | Delete
exports.ClassBody = ClassBody;
[1294] Fix | Delete
var ClassDeclaration = (function () {
[1295] Fix | Delete
function ClassDeclaration(id, superClass, body) {
[1296] Fix | Delete
this.type = syntax_1.Syntax.ClassDeclaration;
[1297] Fix | Delete
this.id = id;
[1298] Fix | Delete
this.superClass = superClass;
[1299] Fix | Delete
this.body = body;
[1300] Fix | Delete
}
[1301] Fix | Delete
return ClassDeclaration;
[1302] Fix | Delete
}());
[1303] Fix | Delete
exports.ClassDeclaration = ClassDeclaration;
[1304] Fix | Delete
var ClassExpression = (function () {
[1305] Fix | Delete
function ClassExpression(id, superClass, body) {
[1306] Fix | Delete
this.type = syntax_1.Syntax.ClassExpression;
[1307] Fix | Delete
this.id = id;
[1308] Fix | Delete
this.superClass = superClass;
[1309] Fix | Delete
this.body = body;
[1310] Fix | Delete
}
[1311] Fix | Delete
return ClassExpression;
[1312] Fix | Delete
}());
[1313] Fix | Delete
exports.ClassExpression = ClassExpression;
[1314] Fix | Delete
var ComputedMemberExpression = (function () {
[1315] Fix | Delete
function ComputedMemberExpression(object, property) {
[1316] Fix | Delete
this.type = syntax_1.Syntax.MemberExpression;
[1317] Fix | Delete
this.computed = true;
[1318] Fix | Delete
this.object = object;
[1319] Fix | Delete
this.property = property;
[1320] Fix | Delete
}
[1321] Fix | Delete
return ComputedMemberExpression;
[1322] Fix | Delete
}());
[1323] Fix | Delete
exports.ComputedMemberExpression = ComputedMemberExpression;
[1324] Fix | Delete
var ConditionalExpression = (function () {
[1325] Fix | Delete
function ConditionalExpression(test, consequent, alternate) {
[1326] Fix | Delete
this.type = syntax_1.Syntax.ConditionalExpression;
[1327] Fix | Delete
this.test = test;
[1328] Fix | Delete
this.consequent = consequent;
[1329] Fix | Delete
this.alternate = alternate;
[1330] Fix | Delete
}
[1331] Fix | Delete
return ConditionalExpression;
[1332] Fix | Delete
}());
[1333] Fix | Delete
exports.ConditionalExpression = ConditionalExpression;
[1334] Fix | Delete
var ContinueStatement = (function () {
[1335] Fix | Delete
function ContinueStatement(label) {
[1336] Fix | Delete
this.type = syntax_1.Syntax.ContinueStatement;
[1337] Fix | Delete
this.label = label;
[1338] Fix | Delete
}
[1339] Fix | Delete
return ContinueStatement;
[1340] Fix | Delete
}());
[1341] Fix | Delete
exports.ContinueStatement = ContinueStatement;
[1342] Fix | Delete
var DebuggerStatement = (function () {
[1343] Fix | Delete
function DebuggerStatement() {
[1344] Fix | Delete
this.type = syntax_1.Syntax.DebuggerStatement;
[1345] Fix | Delete
}
[1346] Fix | Delete
return DebuggerStatement;
[1347] Fix | Delete
}());
[1348] Fix | Delete
exports.DebuggerStatement = DebuggerStatement;
[1349] Fix | Delete
var Directive = (function () {
[1350] Fix | Delete
function Directive(expression, directive) {
[1351] Fix | Delete
this.type = syntax_1.Syntax.ExpressionStatement;
[1352] Fix | Delete
this.expression = expression;
[1353] Fix | Delete
this.directive = directive;
[1354] Fix | Delete
}
[1355] Fix | Delete
return Directive;
[1356] Fix | Delete
}());
[1357] Fix | Delete
exports.Directive = Directive;
[1358] Fix | Delete
var DoWhileStatement = (function () {
[1359] Fix | Delete
function DoWhileStatement(body, test) {
[1360] Fix | Delete
this.type = syntax_1.Syntax.DoWhileStatement;
[1361] Fix | Delete
this.body = body;
[1362] Fix | Delete
this.test = test;
[1363] Fix | Delete
}
[1364] Fix | Delete
return DoWhileStatement;
[1365] Fix | Delete
}());
[1366] Fix | Delete
exports.DoWhileStatement = DoWhileStatement;
[1367] Fix | Delete
var EmptyStatement = (function () {
[1368] Fix | Delete
function EmptyStatement() {
[1369] Fix | Delete
this.type = syntax_1.Syntax.EmptyStatement;
[1370] Fix | Delete
}
[1371] Fix | Delete
return EmptyStatement;
[1372] Fix | Delete
}());
[1373] Fix | Delete
exports.EmptyStatement = EmptyStatement;
[1374] Fix | Delete
var ExportAllDeclaration = (function () {
[1375] Fix | Delete
function ExportAllDeclaration(source) {
[1376] Fix | Delete
this.type = syntax_1.Syntax.ExportAllDeclaration;
[1377] Fix | Delete
this.source = source;
[1378] Fix | Delete
}
[1379] Fix | Delete
return ExportAllDeclaration;
[1380] Fix | Delete
}());
[1381] Fix | Delete
exports.ExportAllDeclaration = ExportAllDeclaration;
[1382] Fix | Delete
var ExportDefaultDeclaration = (function () {
[1383] Fix | Delete
function ExportDefaultDeclaration(declaration) {
[1384] Fix | Delete
this.type = syntax_1.Syntax.ExportDefaultDeclaration;
[1385] Fix | Delete
this.declaration = declaration;
[1386] Fix | Delete
}
[1387] Fix | Delete
return ExportDefaultDeclaration;
[1388] Fix | Delete
}());
[1389] Fix | Delete
exports.ExportDefaultDeclaration = ExportDefaultDeclaration;
[1390] Fix | Delete
var ExportNamedDeclaration = (function () {
[1391] Fix | Delete
function ExportNamedDeclaration(declaration, specifiers, source) {
[1392] Fix | Delete
this.type = syntax_1.Syntax.ExportNamedDeclaration;
[1393] Fix | Delete
this.declaration = declaration;
[1394] Fix | Delete
this.specifiers = specifiers;
[1395] Fix | Delete
this.source = source;
[1396] Fix | Delete
}
[1397] Fix | Delete
return ExportNamedDeclaration;
[1398] Fix | Delete
}());
[1399] Fix | Delete
exports.ExportNamedDeclaration = ExportNamedDeclaration;
[1400] Fix | Delete
var ExportSpecifier = (function () {
[1401] Fix | Delete
function ExportSpecifier(local, exported) {
[1402] Fix | Delete
this.type = syntax_1.Syntax.ExportSpecifier;
[1403] Fix | Delete
this.exported = exported;
[1404] Fix | Delete
this.local = local;
[1405] Fix | Delete
}
[1406] Fix | Delete
return ExportSpecifier;
[1407] Fix | Delete
}());
[1408] Fix | Delete
exports.ExportSpecifier = ExportSpecifier;
[1409] Fix | Delete
var ExpressionStatement = (function () {
[1410] Fix | Delete
function ExpressionStatement(expression) {
[1411] Fix | Delete
this.type = syntax_1.Syntax.ExpressionStatement;
[1412] Fix | Delete
this.expression = expression;
[1413] Fix | Delete
}
[1414] Fix | Delete
return ExpressionStatement;
[1415] Fix | Delete
}());
[1416] Fix | Delete
exports.ExpressionStatement = ExpressionStatement;
[1417] Fix | Delete
var ForInStatement = (function () {
[1418] Fix | Delete
function ForInStatement(left, right, body) {
[1419] Fix | Delete
this.type = syntax_1.Syntax.ForInStatement;
[1420] Fix | Delete
this.left = left;
[1421] Fix | Delete
this.right = right;
[1422] Fix | Delete
this.body = body;
[1423] Fix | Delete
this.each = false;
[1424] Fix | Delete
}
[1425] Fix | Delete
return ForInStatement;
[1426] Fix | Delete
}());
[1427] Fix | Delete
exports.ForInStatement = ForInStatement;
[1428] Fix | Delete
var ForOfStatement = (function () {
[1429] Fix | Delete
function ForOfStatement(left, right, body) {
[1430] Fix | Delete
this.type = syntax_1.Syntax.ForOfStatement;
[1431] Fix | Delete
this.left = left;
[1432] Fix | Delete
this.right = right;
[1433] Fix | Delete
this.body = body;
[1434] Fix | Delete
}
[1435] Fix | Delete
return ForOfStatement;
[1436] Fix | Delete
}());
[1437] Fix | Delete
exports.ForOfStatement = ForOfStatement;
[1438] Fix | Delete
var ForStatement = (function () {
[1439] Fix | Delete
function ForStatement(init, test, update, body) {
[1440] Fix | Delete
this.type = syntax_1.Syntax.ForStatement;
[1441] Fix | Delete
this.init = init;
[1442] Fix | Delete
this.test = test;
[1443] Fix | Delete
this.update = update;
[1444] Fix | Delete
this.body = body;
[1445] Fix | Delete
}
[1446] Fix | Delete
return ForStatement;
[1447] Fix | Delete
}());
[1448] Fix | Delete
exports.ForStatement = ForStatement;
[1449] Fix | Delete
var FunctionDeclaration = (function () {
[1450] Fix | Delete
function FunctionDeclaration(id, params, body, generator) {
[1451] Fix | Delete
this.type = syntax_1.Syntax.FunctionDeclaration;
[1452] Fix | Delete
this.id = id;
[1453] Fix | Delete
this.params = params;
[1454] Fix | Delete
this.body = body;
[1455] Fix | Delete
this.generator = generator;
[1456] Fix | Delete
this.expression = false;
[1457] Fix | Delete
this.async = false;
[1458] Fix | Delete
}
[1459] Fix | Delete
return FunctionDeclaration;
[1460] Fix | Delete
}());
[1461] Fix | Delete
exports.FunctionDeclaration = FunctionDeclaration;
[1462] Fix | Delete
var FunctionExpression = (function () {
[1463] Fix | Delete
function FunctionExpression(id, params, body, generator) {
[1464] Fix | Delete
this.type = syntax_1.Syntax.FunctionExpression;
[1465] Fix | Delete
this.id = id;
[1466] Fix | Delete
this.params = params;
[1467] Fix | Delete
this.body = body;
[1468] Fix | Delete
this.generator = generator;
[1469] Fix | Delete
this.expression = false;
[1470] Fix | Delete
this.async = false;
[1471] Fix | Delete
}
[1472] Fix | Delete
return FunctionExpression;
[1473] Fix | Delete
}());
[1474] Fix | Delete
exports.FunctionExpression = FunctionExpression;
[1475] Fix | Delete
var Identifier = (function () {
[1476] Fix | Delete
function Identifier(name) {
[1477] Fix | Delete
this.type = syntax_1.Syntax.Identifier;
[1478] Fix | Delete
this.name = name;
[1479] Fix | Delete
}
[1480] Fix | Delete
return Identifier;
[1481] Fix | Delete
}());
[1482] Fix | Delete
exports.Identifier = Identifier;
[1483] Fix | Delete
var IfStatement = (function () {
[1484] Fix | Delete
function IfStatement(test, consequent, alternate) {
[1485] Fix | Delete
this.type = syntax_1.Syntax.IfStatement;
[1486] Fix | Delete
this.test = test;
[1487] Fix | Delete
this.consequent = consequent;
[1488] Fix | Delete
this.alternate = alternate;
[1489] Fix | Delete
}
[1490] Fix | Delete
return IfStatement;
[1491] Fix | Delete
}());
[1492] Fix | Delete
exports.IfStatement = IfStatement;
[1493] Fix | Delete
var ImportDeclaration = (function () {
[1494] Fix | Delete
function ImportDeclaration(specifiers, source) {
[1495] Fix | Delete
this.type = syntax_1.Syntax.ImportDeclaration;
[1496] Fix | Delete
this.specifiers = specifiers;
[1497] Fix | Delete
this.source = source;
[1498] Fix | Delete
}
[1499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function