Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrInvalidReceiver = fmt.Errorf("receiver must be compatible with *File")
ErrInvalidReceiver is raised when an invalid receiver is provided
View Source
var ErrNullReceiver = fmt.Errorf("receiver must not be null")
ErrNullReceiver is raised when a null receiver is provided
Functions ¶
This section is empty.
Types ¶
type Decoder ¶
type Decoder struct {
// contains filtered or unexported fields
}
Decoder implements parser.Decoder
type Encoder ¶
type Encoder struct {
// contains filtered or unexported fields
}
Encoder implements parser.Encoder
type Line ¶
type Line struct { // Type of line Type LineType // Components of the line // // When Type = ASSIGNMENT : // [0] = indentation (spaces and tabs) // [1] = variable name // [2] = variable value // [3] = comment (optional) Components []string }
Line represents a meaningful line
Click to show internal directories.
Click to hide internal directories.