go/ast.LabeledStmt.Stmt (field)

11 uses

	go/ast (current package)
		ast.go#L618: 		Stmt  Stmt
		ast.go#L785: func (s *LabeledStmt) End() token.Pos { return s.Stmt.End() }
		walk.go#L193: 		Walk(v, n.Stmt)

	go/parser
		parser.go#L1716: 			stmt := &ast.LabeledStmt{Label: label, Colon: colon, Stmt: p.parseStmt()}

	go/printer
		nodes.go#L1103: 				t = lt.Stmt
		nodes.go#L1253: 		if e, isEmpty := s.Stmt.(*ast.EmptyStmt); isEmpty {
		nodes.go#L1259: 			p.linebreak(p.lineFor(s.Stmt.Pos()), 1, ignore, true)
		nodes.go#L1261: 		p.stmt(s.Stmt, nextIsRBrace)

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L2273: 	if x.Stmt != nil {
		encode_ast.gen.go#L2275: 		e.EncodeAny(x.Stmt)
		encode_ast.gen.go#L2302: 			x.Stmt = d.DecodeAny().(ast.Stmt)