package src
import "github.com/mmcloughlin/avo/src"
Package src provides types for working with source files.
Index ¶
Examples ¶
Types ¶
type Position ¶
Position represents a position in a source file.
func FramePosition ¶
FramePosition returns the Position of the given stack frame.
func (Position) IsValid ¶
IsValid reports whether the position is valid: Line must be positive, but Filename may be empty.
Example¶
Code:play
package main import ( "fmt" "github.com/mmcloughlin/avo/src" ) func main() { fmt.Println(src.Position{"a.go", 42}.IsValid()) fmt.Println(src.Position{"", 42}.IsValid()) fmt.Println(src.Position{"a.go", -1}.IsValid()) }
Output:
true true false
func (Position) Rel ¶
Rel returns Position relative to basepath. If the given filename cannot be expressed relative to basepath the position will be returned unchanged.
func (Position) Relwd ¶
Relwd returns Position relative to the current working directory. Returns p unchanged if the working directory cannot be determined, or the filename cannot be expressed relative to the working directory.
func (Position) String ¶
String represents Position as a string.
Example¶
Code:play
package main
import (
"fmt"
"github.com/mmcloughlin/avo/src"
)
func main() {
fmt.Println(src.Position{"a.go", 42})
fmt.Println(src.Position{"", 42})
fmt.Println(src.Position{"a.go", -1}) // invalid
}
Output:
a.go:42 42 -
Source Files ¶
- Version
- v0.4.0
- Published
- Nov 13, 2021
- Platform
- windows/amd64
- Imports
- 4 packages
- Last checked
- 1 month ago –
Tools for package owners.