Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for htmlOutput (0.07 sec)

  1. src/cmd/cover/cover.go

    	}
    
    	// Generate coverage-annotated source.
    	if *mode != "" {
    		annotate(flag.Args())
    		return
    	}
    
    	// Output HTML or function coverage information.
    	if *htmlOut != "" {
    		err = htmlOutput(profile, *output)
    	} else {
    		err = funcOutput(profile, *output)
    	}
    
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "cover: %v\n", err)
    		os.Exit(2)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top