Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LinkDef (4.55 sec)

  1. src/go/doc/comment/testdata_test.go

    			dumpNL(out, indent+1)
    			fmt.Fprintf(out, "Links")
    			dumpTo(out, indent+2, x.Links)
    		}
    		fmt.Fprintf(out, "\n")
    
    	case []*LinkDef:
    		for _, def := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, def)
    		}
    
    	case *LinkDef:
    		fmt.Fprintf(out, "LinkDef Used:%v Text:%q URL:%s", x.Used, x.Text, x.URL)
    
    	case []Block:
    		for _, blk := range x {
    			dumpNL(out, indent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. api/go1.19.txt

    pkg go/doc/comment, type Link struct, Text []Text #51082
    pkg go/doc/comment, type Link struct, URL string #51082
    pkg go/doc/comment, type LinkDef struct #51082
    pkg go/doc/comment, type LinkDef struct, Text string #51082
    pkg go/doc/comment, type LinkDef struct, URL string #51082
    pkg go/doc/comment, type LinkDef struct, Used bool #51082
    pkg go/doc/comment, type List struct #51082
    pkg go/doc/comment, type List struct, ForceBlankBefore bool #51082
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:29:41 UTC 2022
    - 17.9K bytes
    - Viewed (0)
  3. src/go/doc/comment/parse.go

    type Doc struct {
    	// Content is the sequence of content blocks in the comment.
    	Content []Block
    
    	// Links is the link definitions in the comment.
    	Links []*LinkDef
    }
    
    // A LinkDef is a single link definition.
    type LinkDef struct {
    	Text string // the link text
    	URL  string // the link URL
    	Used bool   // whether the comment uses the definition
    }
    
    // A Block is block-level content in a doc comment,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Italic", Type, 19},
    		{"Link", Type, 19},
    		{"Link.Auto", Field, 19},
    		{"Link.Text", Field, 19},
    		{"Link.URL", Field, 19},
    		{"LinkDef", Type, 19},
    		{"LinkDef.Text", Field, 19},
    		{"LinkDef.URL", Field, 19},
    		{"LinkDef.Used", Field, 19},
    		{"List", Type, 19},
    		{"List.ForceBlankBefore", Field, 19},
    		{"List.ForceBlankBetween", Field, 19},
    		{"List.Items", Field, 19},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top