golang.org/x/net/html.Node.Parent (field)

25 uses

	golang.org/x/net/html (current package)
		node.go#L45: 	Parent, FirstChild, LastChild, PrevSibling, NextSibling *Node
		node.go#L60: 	if newChild.Parent != nil || newChild.PrevSibling != nil || newChild.NextSibling != nil {
		node.go#L79: 	newChild.Parent = n
		node.go#L88: 	if c.Parent != nil || c.PrevSibling != nil || c.NextSibling != nil {
		node.go#L98: 	c.Parent = n
		node.go#L107: 	if c.Parent != n {
		node.go#L122: 	c.Parent = nil
		parse.go#L279: 		parent = table.Parent
		parse.go#L898: 			if body.Parent != nil {
		parse.go#L899: 				body.Parent.RemoveChild(body)
		parse.go#L1305: 			if lastNode.Parent != nil {
		parse.go#L1306: 				lastNode.Parent.RemoveChild(lastNode)
		parse.go#L1315: 		if lastNode.Parent != nil {
		parse.go#L1316: 			lastNode.Parent.RemoveChild(lastNode)
		parse.go#L2414: 	for n := context; n != nil; n = n.Parent {

	github.com/andybalholm/cascadia
		selector.go#L515: 	parent := n.Parent
		selector.go#L563: 	parent := n.Parent
		selector.go#L595: 	parent := n.Parent
		selector.go#L637: 	parent := n.Parent
		selector.go#L704: 	if n.Parent == nil {
		selector.go#L707: 	return n.Parent.Type == html.DocumentNode
		selector.go#L772: 	for p := n.Parent; p != nil; p = p.Parent {
		selector.go#L783: 	return d.Match(n) && n.Parent != nil && a.Match(n.Parent)