mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 05:19:30 +08:00
55 lines
No EOL
2.3 KiB
Text
55 lines
No EOL
2.3 KiB
Text
"use strict";
|
|
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 (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.containsAllTypesByName = void 0;
|
|
const tsutils_1 = require("tsutils");
|
|
const ts = __importStar(require("typescript"));
|
|
const typeFlagUtils_1 = require("./typeFlagUtils");
|
|
/**
|
|
* @param type Type being checked by name.
|
|
* @param allowedNames Symbol names checking on the type.
|
|
* @returns Whether the type is, extends, or contains all of the allowed names.
|
|
*/
|
|
function containsAllTypesByName(type, allowAny, allowedNames) {
|
|
if ((0, typeFlagUtils_1.isTypeFlagSet)(type, ts.TypeFlags.Any | ts.TypeFlags.Unknown)) {
|
|
return !allowAny;
|
|
}
|
|
if ((0, tsutils_1.isTypeReference)(type)) {
|
|
type = type.target;
|
|
}
|
|
const symbol = type.getSymbol();
|
|
if (symbol && allowedNames.has(symbol.name)) {
|
|
return true;
|
|
}
|
|
if ((0, tsutils_1.isUnionOrIntersectionType)(type)) {
|
|
return type.types.every(t => containsAllTypesByName(t, allowAny, allowedNames));
|
|
}
|
|
const bases = type.getBaseTypes();
|
|
return (typeof bases !== 'undefined' &&
|
|
bases.length > 0 &&
|
|
bases.every(t => containsAllTypesByName(t, allowAny, allowedNames)));
|
|
}
|
|
exports.containsAllTypesByName = containsAllTypesByName;
|
|
//# sourceMappingURL=containsAllTypesByName.js.map |