Finished most of delete functions

* Fixed some template errors
* Added IN helpers
This commit is contained in:
Patrick O'brien 2016-04-23 21:54:24 +10:00
commit 9c493810ec
11 changed files with 172 additions and 30 deletions

View file

@ -176,12 +176,12 @@ func outputCompileErrors(buf *bytes.Buffer, outFolder string) {
}
scanner := bufio.NewScanner(fh)
throwaway := eObj.lineNumber - 2
throwaway := eObj.lineNumber - 5
for throwaway > 0 && scanner.Scan() {
throwaway--
}
for i := 0; i < 3; i++ {
for i := 0; i < 6; i++ {
if scanner.Scan() {
b := scanner.Bytes()
if len(b) != 0 {