"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // kinds.ts var kinds_exports = {}; __export(kinds_exports, { classifyKind: () => classifyKind, isEphemeralKind: () => isEphemeralKind, isParameterizedReplaceableKind: () => isParameterizedReplaceableKind, isRegularKind: () => isRegularKind, isReplaceableKind: () => isReplaceableKind }); module.exports = __toCommonJS(kinds_exports); function isRegularKind(kind) { return 1e3 <= kind && kind < 1e4 || [1, 2, 4, 5, 6, 7, 8, 16, 40, 41, 42, 43, 44].includes(kind); } function isReplaceableKind(kind) { return 1e4 <= kind && kind < 2e4 || [0, 3].includes(kind); } function isEphemeralKind(kind) { return 2e4 <= kind && kind < 3e4; } function isParameterizedReplaceableKind(kind) { return 3e4 <= kind && kind < 4e4; } function classifyKind(kind) { if (isRegularKind(kind)) return "regular"; if (isReplaceableKind(kind)) return "replaceable"; if (isEphemeralKind(kind)) return "ephemeral"; if (isParameterizedReplaceableKind(kind)) return "parameterized"; return "unknown"; }