| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- "use strict";
- var __extends = (this && this.__extends) || function (d, b) {
- for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- var ts = require("typescript");
- var Lint = require("../lint");
- var Rule = (function (_super) {
- __extends(Rule, _super);
- function Rule() {
- _super.apply(this, arguments);
- }
- Rule.prototype.apply = function (sourceFile) {
- return this.applyWithWalker(new TrailingCommaWalker(sourceFile, this.getOptions()));
- };
- Rule.FAILURE_STRING_NEVER = "trailing comma";
- Rule.FAILURE_STRING_ALWAYS = "missing trailing comma";
- return Rule;
- }(Lint.Rules.AbstractRule));
- exports.Rule = Rule;
- var TrailingCommaWalker = (function (_super) {
- __extends(TrailingCommaWalker, _super);
- function TrailingCommaWalker() {
- _super.apply(this, arguments);
- }
- TrailingCommaWalker.prototype.visitArrayLiteralExpression = function (node) {
- this.lintNode(node);
- _super.prototype.visitArrayLiteralExpression.call(this, node);
- };
- TrailingCommaWalker.prototype.visitBindingPattern = function (node) {
- if (node.kind === ts.SyntaxKind.ArrayBindingPattern || node.kind === ts.SyntaxKind.ObjectBindingPattern) {
- this.lintNode(node);
- }
- _super.prototype.visitBindingPattern.call(this, node);
- };
- TrailingCommaWalker.prototype.visitNamedImports = function (node) {
- this.lintNode(node);
- _super.prototype.visitNamedImports.call(this, node);
- };
- TrailingCommaWalker.prototype.visitObjectLiteralExpression = function (node) {
- this.lintNode(node);
- _super.prototype.visitObjectLiteralExpression.call(this, node);
- };
- TrailingCommaWalker.prototype.lintNode = function (node) {
- var child = node.getChildAt(1);
- if (child != null && child.kind === ts.SyntaxKind.SyntaxList) {
- var isMultiline = child.getText().match(/\n|\r/);
- var option = this.getOption(isMultiline ? "multiline" : "singleline");
- var grandChildren = child.getChildren();
- if (grandChildren.length > 0) {
- var lastGrandChild = grandChildren[grandChildren.length - 1];
- var hasTrailingComma = lastGrandChild.kind === ts.SyntaxKind.CommaToken;
- if (hasTrailingComma && option === "never") {
- this.addFailure(this.createFailure(lastGrandChild.getStart(), 1, Rule.FAILURE_STRING_NEVER));
- }
- else if (!hasTrailingComma && option === "always") {
- this.addFailure(this.createFailure(lastGrandChild.getEnd(), 1, Rule.FAILURE_STRING_ALWAYS));
- }
- }
- }
- };
- TrailingCommaWalker.prototype.getOption = function (option) {
- var allOptions = this.getOptions();
- if (allOptions == null || allOptions.length === 0) {
- return null;
- }
- return allOptions[0][option];
- };
- return TrailingCommaWalker;
- }(Lint.RuleWalker));
|