"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.isTypeFlagSet = exports.getTypeFlags = void 0; const tsutils = __importStar(require("ts-api-utils")); const ts = __importStar(require("typescript")); const ANY_OR_UNKNOWN = ts.TypeFlags.Any | ts.TypeFlags.Unknown; /** * Gets all of the type flags in a type, iterating through unions automatically. */ function getTypeFlags(type) { // @ts-expect-error Since typescript 5.0, this is invalid, but uses 0 as the default value of TypeFlags. let flags = 0; for (const t of tsutils.unionTypeParts(type)) { flags |= t.flags; } return flags; } exports.getTypeFlags = getTypeFlags; /** * @param flagsToCheck The composition of one or more `ts.TypeFlags`. * @param isReceiver Whether the type is a receiving type (e.g. the type of a * called function's parameter). * @remarks * Note that if the type is a union, this function will decompose it into the * parts and get the flags of every union constituent. If this is not desired, * use the `isTypeFlag` function from tsutils. */ function isTypeFlagSet(type, flagsToCheck, isReceiver) { const flags = getTypeFlags(type); if (isReceiver && flags & ANY_OR_UNKNOWN) { return true; } return (flags & flagsToCheck) !== 0; } exports.isTypeFlagSet = isTypeFlagSet; //# sourceMappingURL=typeFlagUtils.js.map