( ir: NativeCompilerIR.Base[], options: NativeCompilerOptions, )
| 4150 | } |
| 4151 | |
| 4152 | export function compileIRsToC( |
| 4153 | ir: NativeCompilerIR.Base[], |
| 4154 | options: NativeCompilerOptions, |
| 4155 | ): NativeCompilerEmitterOutput { |
| 4156 | const emitter = new CompilerNativeCEmitter(options); |
| 4157 | emitterWalk(emitter, ir); |
| 4158 | return emitter.finalize(); |
| 4159 | } |