type github.com/google/safehtml/template.Error

7 uses

	github.com/google/safehtml/template (current package)
		context.go#L23: 	err     *Error
		error.go#L13: type Error struct {
		error.go#L263: func (e *Error) Error() string {
		error.go#L278: func errorf(k ErrorCode, node parse.Node, line int, f string, args ...interface{}) *Error {
		error.go#L279: 	return &Error{k, node, "", line, fmt.Sprintf(f, args...)}
		escape.go#L31: 		err = &Error{ErrEndContext, nil, name, 0, fmt.Sprintf("ends in a non-text context: %+v", c)}
		transition.go#L252: func eatAttrName(s []byte, i int) (int, *Error) {