gen: fix js main entry point generation

pull/5612/head
Delyan Angelov 2020-07-01 19:37:18 +03:00
parent 5de0f944bd
commit 56ae814cbc
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,7 @@ fn fn_has_go(it ast.FnDecl) bool {
fn (mut g JsGen) gen_method_decl(it ast.FnDecl) {
g.fn_decl = &it
has_go := fn_has_go(it)
is_main := it.name == 'main'
is_main := it.name == 'main.main'
if is_main {
// there is no concept of main in JS but we do have iife
g.writeln('/* program entry point */')