jsgen: handle ComptimeCall
parent
1ef8eacd6e
commit
99ce3d456b
vlib/v/gen/js
|
@ -402,6 +402,9 @@ fn (mut g JsGen) stmt(node ast.Stmt) {
|
||||||
ast.CompIf {
|
ast.CompIf {
|
||||||
// skip: JS has no compile time if
|
// skip: JS has no compile time if
|
||||||
}
|
}
|
||||||
|
ast.ComptimeCall {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
ast.ConstDecl {
|
ast.ConstDecl {
|
||||||
g.gen_const_decl(it)
|
g.gen_const_decl(it)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue