(outFile, result string)
| 16 | } |
| 17 | |
| 18 | func Writefile(outFile, result string) { |
| 19 | cf, err := os.OpenFile(outFile, os.O_CREATE|os.O_WRONLY, 0644) |
| 20 | check(err) |
| 21 | defer cf.Close() |
| 22 | _, err = cf.Write([]byte(result)) |
| 23 | check(err) |
| 24 | } |
| 25 | |
| 26 | type JScriptLoader struct { |
| 27 | Variables map[string]string |