mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 23:07:14 +02:00
There is the most minimal of tests and so this probably doesn't work well yet. Adding tests is the next job.
21 lines
550 B
Go
21 lines
550 B
Go
// Generated by: main
|
|
// TypeWriter: stringer
|
|
// Directive: +gen on astObjectFieldHide
|
|
|
|
package jsonnet
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
const _astObjectFieldHide_name = "astObjectFieldHiddenastObjectFieldInheritastObjectFieldVisible"
|
|
|
|
var _astObjectFieldHide_index = [...]uint8{0, 20, 41, 62}
|
|
|
|
func (i astObjectFieldHide) String() string {
|
|
if i < 0 || i+1 >= astObjectFieldHide(len(_astObjectFieldHide_index)) {
|
|
return fmt.Sprintf("astObjectFieldHide(%d)", i)
|
|
}
|
|
return _astObjectFieldHide_name[_astObjectFieldHide_index[i]:_astObjectFieldHide_index[i+1]]
|
|
}
|