fixed some weird transpilation output & removed old ast

This commit is contained in:
basil 2025-06-08 21:24:36 -04:00
parent e0dd8ff9d5
commit b63741c8d1
Signed by: basil
SSH key fingerprint: SHA256:y04xIFL/yqNaG9ae9Vl95vELtHfApGAIoOGLeVLP/fE
4 changed files with 8 additions and 62 deletions

View file

@ -111,7 +111,7 @@ func (t *transpiler) visitField(g *fieldNode) (string, error) {
return "", err
}
return fmt.Sprintf("\t%s\t%s\n", left, right), nil
return fmt.Sprintf("\t%s\t%s", left, right), nil
}
// visitIdentifier implements visitor.