package prnt
import "github.com/mmcloughlin/avo/internal/prnt"
Package prnt provides common functionality for code generators.
Index ¶
Types ¶
type Generator ¶
type Generator struct {
// contains filtered or unexported fields
}
Generator provides convenience methods for code generators. In particular it provides fmt-like methods which print to an internal buffer. It also allows any errors to be stored so they can be checked at the end, rather than having error checks obscuring the code generation.
func (*Generator) AddError ¶
AddError records an error in code generation. The first non-nil error will prevent printing operations from writing anything else, and the error will be returned from Result().
func (*Generator) Comment ¶
Comment writes comment lines prefixed with "// ".
func (*Generator) NL ¶
func (g *Generator) NL()
NL prints a new line.
func (*Generator) Printf ¶
Printf prints to the internal buffer.
func (*Generator) Raw ¶
Raw provides direct access to the underlying output stream.
func (*Generator) Result ¶
Result returns the printed bytes. If any error was recorded with AddError during code generation, the first such error will be returned here.
Source Files ¶
- Version
- v0.1.0
- Published
- Jan 4, 2021
- Platform
- js/wasm
- Imports
- 4 packages
- Last checked
- 1 month ago –
Tools for package owners.