type go/ast.LabeledStmt

19 uses

	go/ast (current package)
		ast.go#L615: 	LabeledStmt struct {
		ast.go#L758: func (s *LabeledStmt) Pos() token.Pos    { return s.Label.Pos() }
		ast.go#L785: func (s *LabeledStmt) End() token.Pos { return s.Stmt.End() }
		ast.go#L845: func (*LabeledStmt) stmtNode()    {}
		scope.go#L120: 	case *LabeledStmt:
		walk.go#L191: 	case *LabeledStmt:

	go/parser
		parser.go#L1716: 			stmt := &ast.LabeledStmt{Label: label, Colon: colon, Stmt: p.parseStmt()}
		parser.go#L2233: 		if _, isLabeledStmt := s.(*ast.LabeledStmt); !isLabeledStmt {

	go/printer
		nodes.go#L1098: 				lt, _ := t.(*ast.LabeledStmt)
		nodes.go#L1246: 	case *ast.LabeledStmt:
		printer.go#L1132: 		if _, ok := n.(*ast.LabeledStmt); ok {
		printer.go#L1144: 			if _, ok := s.(*ast.LabeledStmt); ok {

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L2261: func encode_ast_LabeledStmt(e *codec.Encoder, x *ast.LabeledStmt) {
		encode_ast.gen.go#L2280: func decode_ast_LabeledStmt(d *codec.Decoder, p **ast.LabeledStmt) {
		encode_ast.gen.go#L2286: 		*p = ref.(*ast.LabeledStmt)
		encode_ast.gen.go#L2289: 	var x ast.LabeledStmt
		encode_ast.gen.go#L2311: 	codec.Register(&ast.LabeledStmt{},
		encode_ast.gen.go#L2312: 		func(e *codec.Encoder, x interface{}) { encode_ast_LabeledStmt(e, x.(*ast.LabeledStmt)) },
		encode_ast.gen.go#L2314: 			var x *ast.LabeledStmt