go/ast.BranchStmt.Tok (field)

7 uses

	go/ast (current package)
		ast.go#L675: 		Tok    token.Token // keyword token (BREAK, CONTINUE, GOTO, FALLTHROUGH)
		ast.go#L804: 	return token.Pos(int(s.TokPos) + len(s.Tok.String()))

	go/parser
		parser.go#L1820: 	return &ast.BranchStmt{TokPos: pos, Tok: tok, Label: label}

	go/printer
		nodes.go#L1316: 		p.print(s.Tok)

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L507: 	if x.Tok != 0 {
		encode_ast.gen.go#L509: 		e.EncodeInt(int64(x.Tok))
		encode_ast.gen.go#L538: 			x.Tok = token.Token(d.DecodeInt())