Documentation ¶
Overview ¶
Package parser provides a parser for a path specification language used in expressing Kubernetes object paths. See specification: https://docs.google.com/document/d/1MdchNFz9guycX__QMGxpJviPaT_MZs8iXaAFqCvoXYQ/edit#heading=h.ryydvhafooho
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrTrailingSeparator indicates a parsing error due to an illegal trailing separator. ErrTrailingSeparator = errors.New("trailing separators are forbidden") // ErrUnexpectedToken indicates a parsing error due to an unexpected token. ErrUnexpectedToken = errors.New("unexpected token") // ErrInvalidInteger indicates a parsing error due to an invalid integer, such as integer overflow. ErrInvalidInteger = invalidIntegerError{} )
Functions ¶
This section is empty.
Types ¶
type List ¶
func (List) DeepCopyNode ¶
Click to show internal directories.
Click to hide internal directories.