1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

jsgen: handle ComptimeCall

This commit is contained in:
Alexander Medvednikov 2020-05-25 05:38:47 +02:00
parent 1ef8eacd6e
commit 99ce3d456b

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)
}