You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.0 KiB
56 lines
1.0 KiB
2 years ago
|
###
|
||
|
Script for compiling imba and imba1 files inside workers using
|
||
|
workerpool.
|
||
|
###
|
||
|
|
||
|
import {compile} from 'dist/compiler.cjs'
|
||
|
import imba1 from 'dist/../scripts/bootstrap.compiler.js'
|
||
|
|
||
|
const workerpool = require('workerpool')
|
||
|
|
||
|
const id = Math.random!
|
||
|
|
||
|
def compile_imba code, options
|
||
|
let out = {id: options.sourceId}
|
||
|
let res = null
|
||
|
|
||
|
try
|
||
|
res = compile(code,options)
|
||
|
catch e
|
||
|
console.log "ERROR COMPILING IMBA",e,options.sourcePath
|
||
|
res = {}
|
||
|
|
||
|
for item in res.diagnostics
|
||
|
item.lineText = item.#lineText
|
||
|
|
||
|
if res.warnings
|
||
|
out.warnings = res.warnings
|
||
|
|
||
|
if res.errors
|
||
|
out.errors = res.errors
|
||
|
|
||
|
let js = res.js
|
||
|
|
||
|
# clean up the trims now
|
||
|
out.js = js
|
||
|
out.css = res.css
|
||
|
return out
|
||
|
|
||
|
|
||
|
def compile_imba1 code,options
|
||
|
options.target = 'web' if options.target == 'browser'
|
||
|
let out = {id: options.sourceId, warnings: [], errors: []}
|
||
|
let res = imba1.compile(code,options)
|
||
|
let js = res.js
|
||
|
|
||
|
if js.indexOf('$_ =') > 0
|
||
|
js = "var $_;\n{js}"
|
||
|
|
||
|
out.js = js
|
||
|
|
||
|
return out
|
||
|
|
||
|
workerpool.worker(
|
||
|
compile_imba: compile_imba
|
||
|
compile_imba1: compile_imba1
|
||
|
)
|