github.com/yuin/goldmark/ast.BaseNode.firstChild (field)

13 uses

	github.com/yuin/goldmark/ast (current package)
		ast.go#L174: 	firstChild Node
		ast.go#L191: 	return n.firstChild != nil
		ast.go#L225: 		n.firstChild = next
		ast.go#L239: 	for c := n.firstChild; c != nil; {
		ast.go#L246: 	n.firstChild = nil
		ast.go#L254: 	current := n.firstChild
		ast.go#L278: 	n.firstChild = sorted
		ast.go#L279: 	for c := n.firstChild; c != nil; c = c.NextSibling() {
		ast.go#L286: 	return n.firstChild
		ast.go#L312: 	if n.firstChild == nil {
		ast.go#L313: 		n.firstChild = v
		ast.go#L352: 			n.firstChild = insertee
		ast.go#L380: 	for c := n.firstChild; c != nil; c = c.NextSibling() {