ugo icon indicating copy to clipboard operation
ugo copied to clipboard

µGo编程语言(从头开发一个迷你Go语言编译器)

Results 1 ugo issues
Sort by recently updated
recently updated
newest added

In compiler.go ```go // if.body func() { defer p.restoreScope(p.scope) p.enterScope() fmt.Fprintf(w, "\n%s:\n", ifBody) if stmt.Else != nil { p.compileStmt(w, stmt.Body) fmt.Fprintf(w, "\tbr label %%%s\n", ifElse) // here } else {...