nmake/src/Tools/DefaultCompiler.ts
2024-08-12 14:29:07 +08:00

15 lines
569 B
TypeScript

import Compiler from "../Compiler/Compiler.js"
const Global = (global as any)
export const setDefaultCompiler = (name:string,compiler:Compiler)=>{
if(!Global.defaultCompiler)Global.defaultCompiler = {};
const globalCompilers = Global.defaultCompiler as {[key:string]:Compiler}
globalCompilers[name] = compiler
}
export const getDefaultCompiler = (name:string):undefined|Compiler=>{
if(!Global.defaultCompiler)Global.defaultCompiler = {};
const globalCompilers = Global.defaultCompiler as {[key:string]:Compiler}
return globalCompilers[name]
}