File size: 703 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import { registerLegacyContextEngine } from "./legacy.js";
/**
* Ensures all built-in context engines are registered exactly once.
*
* The legacy engine is always registered as a safe fallback so that
* `resolveContextEngine()` can resolve the default "legacy" slot without
* callers needing to remember manual registration.
*
* Additional engines are registered by their own plugins via
* `api.registerContextEngine()` during plugin load.
*/
let initialized = false;
export function ensureContextEnginesInitialized(): void {
if (initialized) {
return;
}
initialized = true;
// Always available – safe fallback for the "legacy" slot default.
registerLegacyContextEngine();
}
|