gotools/gopls/internal/cmd/info.go

type help

func (h *help) Name() string      {}

func (h *help) Parent() string    {}

func (h *help) Usage() string     {}

func (h *help) ShortHelp() string {}

func (h *help) DetailedHelp(f *flag.FlagSet) {}

// Run prints help information about a subcommand.
func (h *help) Run(ctx context.Context, args ...string) error {}

type version

func (v *version) Name() string      {}

func (v *version) Parent() string    {}

func (v *version) Usage() string     {}

func (v *version) ShortHelp() string {}

func (v *version) DetailedHelp(f *flag.FlagSet) {}

// Run prints version information to stdout.
func (v *version) Run(ctx context.Context, args ...string) error {}

type bug

func (b *bug) Name() string      {}

func (b *bug) Parent() string    {}

func (b *bug) Usage() string     {}

func (b *bug) ShortHelp() string {}

func (b *bug) DetailedHelp(f *flag.FlagSet) {}

const goplsBugPrefix

const goplsBugHeader

// Run collects some basic information and then prepares an issue ready to
// be reported.
func (b *bug) Run(ctx context.Context, args ...string) error {}

type apiJSON

func (j *apiJSON) Name() string      {}

func (j *apiJSON) Parent() string    {}

func (j *apiJSON) Usage() string     {}

func (j *apiJSON) ShortHelp() string {}

func (j *apiJSON) DetailedHelp(f *flag.FlagSet) {}

func (j *apiJSON) Run(ctx context.Context, args ...string) error {}

type licenses

func (l *licenses) Name() string      {}

func (l *licenses) Parent() string    {}

func (l *licenses) Usage() string     {}

func (l *licenses) ShortHelp() string {}

func (l *licenses) DetailedHelp(f *flag.FlagSet) {}

const licensePreamble

func (l *licenses) Run(ctx context.Context, args ...string) error {}