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

10 uses

	golang.org/x/net/html (current package)
		node.go#L45: 	Parent, FirstChild, LastChild, PrevSibling, NextSibling *Node
		node.go#L67: 		prev = n.LastChild
		node.go#L77: 		n.LastChild = newChild
		node.go#L91: 	last := n.LastChild
		node.go#L97: 	n.LastChild = c
		node.go#L116: 	if n.LastChild == c {
		node.go#L117: 		n.LastChild = c.PrevSibling
		parse.go#L288: 		prev = parent.LastChild
		parse.go#L314: 	if n := t.LastChild; n != nil && n.Type == TextNode {

	github.com/andybalholm/cascadia
		selector.go#L605: 	for c := parent.LastChild; c != nil; c = c.PrevSibling {