.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / tslint / lib / rules / noParameterPropertiesRule.js
1 "use strict";
2 /**
3  * @license
4  * Copyright 2013 Palantir Technologies, Inc.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 Object.defineProperty(exports, "__esModule", { value: true });
19 var tslib_1 = require("tslib");
20 var tsutils_1 = require("tsutils");
21 var ts = require("typescript");
22 var Lint = require("../index");
23 var Rule = /** @class */ (function (_super) {
24     tslib_1.__extends(Rule, _super);
25     function Rule() {
26         return _super !== null && _super.apply(this, arguments) || this;
27     }
28     /* tslint:enable:object-literal-sort-keys */
29     Rule.FAILURE_STRING_FACTORY = function (ident) {
30         return "Property '" + ident + "' cannot be declared in the constructor";
31     };
32     Rule.prototype.apply = function (sourceFile) {
33         return this.applyWithFunction(sourceFile, walk);
34     };
35     /* tslint:disable:object-literal-sort-keys */
36     Rule.metadata = {
37         ruleName: "no-parameter-properties",
38         description: "Disallows parameter properties in class constructors.",
39         rationale: Lint.Utils.dedent(templateObject_1 || (templateObject_1 = tslib_1.__makeTemplateObject(["\n            Parameter properties can be confusing to those new to TS as they are less explicit\n            than other ways of declaring and initializing class members.\n\n            It can be cleaner to keep member variable declarations in one list directly above the class constructor\n            (instead of mixed between direct class members and constructor parameter properties).\n        "], ["\n            Parameter properties can be confusing to those new to TS as they are less explicit\n            than other ways of declaring and initializing class members.\n\n            It can be cleaner to keep member variable declarations in one list directly above the class constructor\n            (instead of mixed between direct class members and constructor parameter properties).\n        "]))),
40         optionsDescription: "Not configurable.",
41         options: null,
42         optionExamples: [true],
43         type: "style",
44         typescriptOnly: true,
45     };
46     return Rule;
47 }(Lint.Rules.AbstractRule));
48 exports.Rule = Rule;
49 function walk(ctx) {
50     return ts.forEachChild(ctx.sourceFile, function cb(node) {
51         if (node.kind === ts.SyntaxKind.Constructor) {
52             for (var _i = 0, _a = node.parameters; _i < _a.length; _i++) {
53                 var parameter = _a[_i];
54                 if (tsutils_1.isParameterProperty(parameter)) {
55                     ctx.addFailure(parameter.getStart(ctx.sourceFile), parameter.name.pos, Rule.FAILURE_STRING_FACTORY(parameter.name.getText(ctx.sourceFile)));
56                 }
57             }
58         }
59         return ts.forEachChild(node, cb);
60     });
61 }
62 var templateObject_1;