@angular/cdk
Version:
Angular Material Component Development Kit
93 lines • 3.69 kB
JavaScript
;
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.PropertyNamesMigration = void 0;
const ts = __importStar(require("typescript"));
const migration_1 = require("../../update-tool/migration");
const upgrade_data_1 = require("../upgrade-data");
/**
* Migration that walks through every property access expression and updates
* accessed properties that have been updated to a new name.
*/
class PropertyNamesMigration extends migration_1.Migration {
constructor() {
super(...arguments);
/** Change data that upgrades to the specified target version. */
this.data = (0, upgrade_data_1.getVersionUpgradeData)(this, 'propertyNames');
// Only enable the migration rule if there is upgrade data.
this.enabled = this.data.length !== 0;
}
visitNode(node) {
if (ts.isPropertyAccessExpression(node)) {
this._visitPropertyAccessExpression(node);
}
}
_visitPropertyAccessExpression(node) {
const hostType = this.typeChecker.getTypeAtLocation(node.expression);
const typeNames = [];
if (hostType) {
if (hostType.isIntersection()) {
hostType.types.forEach(type => {
if (type.symbol) {
typeNames.push(type.symbol.getName());
}
});
}
else if (hostType.symbol) {
typeNames.push(hostType.symbol.getName());
}
}
this.data.forEach(data => {
if (node.name.text !== data.replace) {
return;
}
if (!data.limitedTo || typeNames.some(type => data.limitedTo.classes.includes(type))) {
this.fileSystem
.edit(this.fileSystem.resolve(node.getSourceFile().fileName))
.remove(node.name.getStart(), node.name.getWidth())
.insertRight(node.name.getStart(), data.replaceWith);
}
});
}
}
exports.PropertyNamesMigration = PropertyNamesMigration;
//# sourceMappingURL=property-names.js.map