jsgen: handle ComptimeCall

pull/5018/head
Alexander Medvednikov 2020-05-25 05:38:47 +02:00
parent 1ef8eacd6e
commit 99ce3d456b
1 changed files with 3 additions and 0 deletions

View File

@ -402,6 +402,9 @@ fn (mut g JsGen) stmt(node ast.Stmt) {
ast.CompIf {
// skip: JS has no compile time if
}
ast.ComptimeCall {
// TODO
}
ast.ConstDecl {
g.gen_const_decl(it)
}