Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- go install -ldflags="-X main.Build=ab7367ed2bf15044f7bca97147a802f77b875797" -compiler gccgo github.com/derekparker/delve/cmd/dlv
- # github.com/derekparker/delve/pkg/config
- pkg/config/config.go:10:2: error: import file ‘gopkg.in/yaml.v2’ not found
- yaml "gopkg.in/yaml.v2"
- ^
- pkg/config/config.go:69:8: error: reference to undefined name ‘yaml’
- err = yaml.Unmarshal(data, &c)
- ^
- # github.com/derekparker/delve/pkg/dwarf/reader
- pkg/dwarf/reader/reader.go:8:26: error: import file ‘golang.org/x/debug/dwarf’ not found
- "golang.org/x/debug/dwarf"
- ^
- pkg/dwarf/reader/reader.go:12:8: error: expected package
- *dwarf.Reader
- ^
- pkg/dwarf/reader/reader.go:17:21: error: expected package
- func New(data *dwarf.Data) *Reader {
- ^
- pkg/dwarf/reader/reader.go:22:37: error: expected package
- func (reader *Reader) Seek(off dwarf.Offset) {
- ^
- pkg/dwarf/reader/reader.go:28:47: error: expected package
- func (reader *Reader) SeekToEntry(entry *dwarf.Entry) error {
- ^
- pkg/dwarf/reader/reader.go:37:56: error: expected package
- func (reader *Reader) SeekToFunction(pc uint64) (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:112:46: error: expected package
- func (reader *Reader) SeekToType(entry *dwarf.Entry, resolveTypedefs bool, resolvePointerTypes bool) (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:112:109: error: expected package
- func (reader *Reader) SeekToType(entry *dwarf.Entry, resolveTypedefs bool, resolvePointerTypes bool) (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:113:48: error: expected package
- offset, ok := entry.Val(dwarf.AttrType).(dwarf.Offset)
- ^
- pkg/dwarf/reader/reader.go:135:52: error: expected package
- offset, ok = typeEntry.Val(dwarf.AttrType).(dwarf.Offset)
- ^
- pkg/dwarf/reader/reader.go:146:41: error: expected package
- func (reader *Reader) NextType() (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:164:59: error: expected package
- func (reader *Reader) SeekToTypeNamed(name string) (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:185:71: error: expected package
- func (reader *Reader) FindEntryNamed(name string, member bool) (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:227:16: error: expected package
- var attr dwarf.Attr
- ^
- pkg/dwarf/reader/reader.go:240:56: error: expected package
- func (reader *Reader) InstructionsForEntry(entry *dwarf.Entry) ([]byte, error) {
- ^
- pkg/dwarf/reader/reader.go:261:50: error: expected package
- func (reader *Reader) NextScopeVariable() (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:285:51: error: expected package
- func (reader *Reader) NextMemberVariable() (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:310:52: error: expected package
- func (reader *Reader) NextPackageVariable() (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:333:48: error: expected package
- func (reader *Reader) NextCompileUnit() (*dwarf.Entry, error) {
- ^
- pkg/dwarf/reader/reader.go:24:8: error: reference to undefined field or method ‘Reader’
- reader.Reader.Seek(off)
- ^
- pkg/dwarf/reader/reader.go:31:18: error: reference to undefined field or method ‘Next’
- _, err := reader.Next()
- ^
- pkg/dwarf/reader/reader.go:41:4: error: return with value in function with no return type
- return nil, err
- ^
- pkg/dwarf/reader/reader.go:59:4: error: return with value in function with no return type
- return entry, nil
- ^
- pkg/dwarf/reader/reader.go:63:2: error: return with value in function with no return type
- return nil, fmt.Errorf("unable to find function context")
- ^
- pkg/dwarf/reader/reader.go:68:22: error: reference to undefined field or method ‘FindEntryNamed’
- entry, err := reader.FindEntryNamed(name, false)
- ^
- pkg/dwarf/reader/reader.go:72:32: error: reference to undefined name ‘dwarf’
- instructions, ok := entry.Val(dwarf.AttrLocation).([]byte)
- ^
- pkg/dwarf/reader/reader.go:87:23: error: reference to undefined field or method ‘NextMemberVariable’
- entry, err := reader.NextMemberVariable()
- ^
- pkg/dwarf/reader/reader.go:94:25: error: reference to undefined name ‘dwarf’
- name, ok := entry.Val(dwarf.AttrName).(string)
- ^
- pkg/dwarf/reader/reader.go:98:33: error: reference to undefined name ‘dwarf’
- instructions, ok := entry.Val(dwarf.AttrDataMemberLoc).([]byte)
- ^
- pkg/dwarf/reader/reader.go:115:3: error: return with value in function with no return type
- return nil, fmt.Errorf("entry does not have a type attribute")
- ^
- pkg/dwarf/reader/reader.go:124:4: error: return with value in function with no return type
- return nil, err
- ^
- pkg/dwarf/reader/reader.go:128:4: error: return with value in function with no return type
- return typeEntry, nil
- ^
- pkg/dwarf/reader/reader.go:132:4: error: return with value in function with no return type
- return typeEntry, nil
- ^
- pkg/dwarf/reader/reader.go:137:4: error: return with value in function with no return type
- return typeEntry, nil
- ^
- pkg/dwarf/reader/reader.go:143:2: error: return with value in function with no return type
- return nil, TypeNotFoundErr
- ^
- pkg/dwarf/reader/reader.go:149:4: error: return with value in function with no return type
- return nil, err
- ^
- pkg/dwarf/reader/reader.go:154:4: error: return with value in function with no return type
- return entry, nil
- ^
- pkg/dwarf/reader/reader.go:158:2: error: return with value in function with no return type
- return nil, nil
- ^
- pkg/dwarf/reader/reader.go:168:4: error: return with value in function with no return type
- return nil, err
- ^
- pkg/dwarf/reader/reader.go:177:4: error: return with value in function with no return type
- return entry, nil
- ^
- pkg/dwarf/reader/reader.go:181:2: error: return with value in function with no return type
- return nil, TypeNotFoundErr
- ^
- pkg/dwarf/reader/reader.go:189:4: error: return with value in function with no return type
- return nil, err
- ^
- pkg/dwarf/reader/reader.go:199:5: error: return with value in function with no return type
- return nil, fmt.Errorf("could not find symbol value for %s", name)
- ^
- pkg/dwarf/reader/reader.go:217:3: error: return with value in function with no return type
- return entry, nil
- ^
- pkg/dwarf/reader/reader.go:219:2: error: return with value in function with no return type
- return nil, fmt.Errorf("could not find symbol value for %s", name)
- ^
- pkg/dwarf/reader/reader.go:223:22: error: reference to undefined field or method ‘FindEntryNamed’
- entry, err := reader.FindEntryNamed(name, member)
- ^
- pkg/dwarf/reader/reader.go:229:10: error: reference to undefined name ‘dwarf’
- attr = dwarf.AttrDataMemberLoc
- ^
- pkg/dwarf/reader/reader.go:231:10: error: reference to undefined name ‘dwarf’
- attr = dwarf.AttrLocation
- ^
- pkg/dwarf/reader/reader.go:241:18: error: reference to undefined name ‘dwarf’
- if entry.Tag == dwarf.TagMember {
- ^
- pkg/dwarf/reader/reader.go:242:33: error: reference to undefined name ‘dwarf’
- instructions, ok := entry.Val(dwarf.AttrDataMemberLoc).([]byte)
- ^
- pkg/dwarf/reader/reader.go:251:32: error: reference to undefined name ‘dwarf’
- instructions, ok := entry.Val(dwarf.AttrLocation).([]byte)
- ^
- pkg/dwarf/reader/reader.go:264:4: error: return with value in function with no return type
- return nil, err
- ^
- pkg/dwarf/reader/reader.go:276:4: error: return with value in function with no return type
- return entry, nil
- ^
- pkg/dwarf/reader/reader.go:281:2: error: return with value in function with no return type
- return nil, nil
- ^
- pkg/dwarf/reader/reader.go:288:4: error: return with value in function with no return type
- return nil, err
- ^
- pkg/dwarf/reader/reader.go:300:4: error: return with value in function with no return type
- return entry, nil
- ^
- pkg/dwarf/reader/reader.go:305:2: error: return with value in function with no return type
- return nil, nil
- ^
- pkg/dwarf/reader/reader.go:313:4: error: return with value in function with no return type
- return nil, err
- ^
- pkg/dwarf/reader/reader.go:319:5: error: return with value in function with no return type
- return entry, nil
- ^
- pkg/dwarf/reader/reader.go:330:2: error: return with value in function with no return type
- return nil, nil
- ^
- pkg/dwarf/reader/reader.go:336:4: error: return with value in function with no return type
- return nil, err
- ^
- pkg/dwarf/reader/reader.go:340:4: error: return with value in function with no return type
- return entry, nil
- ^
- pkg/dwarf/reader/reader.go:344:2: error: return with value in function with no return type
- return nil, nil
- ^
- pkg/dwarf/reader/reader.go:18:10: error: too many expressions for struct
- return &Reader{data.Reader(), 0}
- ^
- # github.com/derekparker/delve/vendor/github.com/spf13/cobra
- vendor/github.com/spf13/cobra/bash_completions.go:10:24: error: import file ‘github.com/spf13/pflag’ not found
- "github.com/spf13/pflag"
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:320:32: error: expected package
- func writeShortFlag(flag *pflag.Flag, w io.Writer) error {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:334:27: error: expected package
- func writeFlag(flag *pflag.Flag, w io.Writer) error {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:359:51: error: expected package
- cmd.NonInheritedFlags().VisitAll(func(flag *pflag.Flag) {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:374:48: error: expected package
- cmd.InheritedFlags().VisitAll(func(flag *pflag.Flag) {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:400:33: error: expected package
- flags.VisitAll(func(flag *pflag.Flag) {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:512:35: error: expected package
- func MarkFlagRequired(flags *pflag.FlagSet, name string) error {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:530:35: error: expected package
- func MarkFlagFilename(flags *pflag.FlagSet, name string, extensions ...string) error {
- ^
- vendor/github.com/spf13/cobra/command.go:26:2: error: import file ‘github.com/spf13/pflag’ not found
- flag "github.com/spf13/pflag"
- ^
- vendor/github.com/spf13/cobra/command.go:57:13: error: expected package
- flags *flag.FlagSet
- ^
- vendor/github.com/spf13/cobra/command.go:59:14: error: expected package
- pflags *flag.FlagSet
- ^
- vendor/github.com/spf13/cobra/command.go:61:14: error: expected package
- lflags *flag.FlagSet
- ^
- vendor/github.com/spf13/cobra/command.go:114:27: error: expected package
- globNormFunc func(f *flag.FlagSet, name string) flag.NormalizedName
- ^
- vendor/github.com/spf13/cobra/command.go:114:54: error: expected package
- globNormFunc func(f *flag.FlagSet, name string) flag.NormalizedName
- ^
- vendor/github.com/spf13/cobra/command.go:180:60: error: expected package
- func (c *Command) SetGlobalNormalizationFunc(n func(f *flag.FlagSet, name string) flag.NormalizedName) {
- ^
- vendor/github.com/spf13/cobra/command.go:180:87: error: expected package
- func (c *Command) SetGlobalNormalizationFunc(n func(f *flag.FlagSet, name string) flag.NormalizedName) {
- ^
- vendor/github.com/spf13/cobra/command.go:315:40: error: expected package
- func isBooleanFlag(name string, f *flag.FlagSet) bool {
- ^
- vendor/github.com/spf13/cobra/command.go:324:45: error: expected package
- func isBooleanShortFlag(name string, f *flag.FlagSet) bool {
- ^
- vendor/github.com/spf13/cobra/command.go:326:25: error: expected package
- f.VisitAll(func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:864:33: error: expected package
- x.flags.VisitAll(func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:877:34: error: expected package
- x.pflags.VisitAll(func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:1017:57: error: expected package
- func (c *Command) GlobalNormalizationFunc() func(f *flag.FlagSet, name string) flag.NormalizedName {
- ^
- vendor/github.com/spf13/cobra/command.go:1017:84: error: expected package
- func (c *Command) GlobalNormalizationFunc() func(f *flag.FlagSet, name string) flag.NormalizedName {
- ^
- vendor/github.com/spf13/cobra/command.go:1022:32: error: expected package
- func (c *Command) Flags() *flag.FlagSet {
- ^
- vendor/github.com/spf13/cobra/command.go:1034:37: error: expected package
- func (c *Command) LocalFlags() *flag.FlagSet {
- ^
- vendor/github.com/spf13/cobra/command.go:1038:32: error: expected package
- c.lflags.VisitAll(func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:1042:41: error: expected package
- flag.CommandLine.VisitAll(func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:1052:41: error: expected package
- func (c *Command) InheritedFlags() *flag.FlagSet {
- ^
- vendor/github.com/spf13/cobra/command.go:1062:45: error: expected package
- x.PersistentFlags().VisitAll(func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:1081:44: error: expected package
- func (c *Command) NonInheritedFlags() *flag.FlagSet {
- ^
- vendor/github.com/spf13/cobra/command.go:1086:42: error: expected package
- func (c *Command) PersistentFlags() *flag.FlagSet {
- ^
- vendor/github.com/spf13/cobra/command.go:1127:48: error: expected package
- func (c *Command) Flag(name string) (flag *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:1138:58: error: expected package
- func (c *Command) persistentFlag(name string) (flag *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:1170:29: error: expected package
- addtolocal := func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:1178:42: error: expected package
- flag.CommandLine.VisitAll(func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/command.go:1185:45: error: expected package
- x.PersistentFlags().VisitAll(func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:271:2: error: range clause must have array, slice, string, map, or channel type
- for _, c := range cmd.Commands() {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:401:3: error: range clause must have array, slice, string, map, or channel type
- for key := range flag.Annotations {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:432:6: error: invalid type for range clause
- for _, value := range cmd.ValidArgs {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:432:2: error: range clause must have array, slice, string, map, or channel type
- for _, value := range cmd.ValidArgs {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:441:6: error: invalid type for range clause
- for _, c := range cmd.Commands() {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:441:2: error: range clause must have array, slice, string, map, or channel type
- for _, c := range cmd.Commands() {
- ^
- vendor/github.com/spf13/cobra/command.go:130:10: error: expected pointer
- return *c.output
- ^
- vendor/github.com/spf13/cobra/command.go:185:2: error: range clause must have array, slice, string, map, or channel type
- for _, command := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:214:4: error: return with value in function with no return type
- return cmd.helpFunc
- ^
- vendor/github.com/spf13/cobra/command.go:218:2: error: return with value in function with no return type
- return func(*Command, []string) {
- ^
- vendor/github.com/spf13/cobra/command.go:309:2: error: range clause must have array, slice, string, map, or channel type
- for _, x := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:392:3: error: return with value in function with no return type
- return nil, nil, fmt.Errorf("Called find() on a nil Command")
- ^
- vendor/github.com/spf13/cobra/command.go:433:3: error: return with value in function with no return type
- return commandFound, a, nil
- ^
- vendor/github.com/spf13/cobra/command.go:445:5: error: range clause must have array, slice, string, map, or channel type
- for _, s := range suggestions {
- ^
- vendor/github.com/spf13/cobra/command.go:450:3: error: return with value in function with no return type
- return commandFound, a, fmt.Errorf("unknown command %q for %q%s", argsWOflags[0], commandFound.CommandPath(), suggestionsString)
- ^
- vendor/github.com/spf13/cobra/command.go:453:2: error: return with value in function with no return type
- return commandFound, a, nil
- ^
- vendor/github.com/spf13/cobra/command.go:400:4: error: return with value in function with no return type
- return c, innerArgs
- ^
- vendor/github.com/spf13/cobra/command.go:403:14: error: invalid type for make function
- matches := make([]*Command, 0)
- ^
- vendor/github.com/spf13/cobra/command.go:406:5: error: return with value in function with no return type
- return innerfind(cmd, argsMinusFirstX(innerArgs, nextSubCmd))
- ^
- vendor/github.com/spf13/cobra/command.go:410:23: error: argument 1 must be a slice
- matches = append(matches, cmd)
- ^
- vendor/github.com/spf13/cobra/command.go:414:24: error: argument 1 must be a slice
- matches = append(matches, cmd)
- ^
- vendor/github.com/spf13/cobra/command.go:412:5: error: range clause must have array, slice, string, map, or channel type
- for _, x := range cmd.Aliases {
- ^
- vendor/github.com/spf13/cobra/command.go:404:3: error: range clause must have array, slice, string, map, or channel type
- for _, cmd := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:422:4: error: return with value in function with no return type
- return innerfind(matches[0], argsMinusFirstX(innerArgs, argsWOflags[0]))
- ^
- vendor/github.com/spf13/cobra/command.go:425:3: error: return with value in function with no return type
- return c, innerArgs
- ^
- vendor/github.com/spf13/cobra/command.go:466:4: error: range clause must have array, slice, string, map, or channel type
- for _, explicitSuggestion := range cmd.SuggestFor {
- ^
- vendor/github.com/spf13/cobra/command.go:458:2: error: range clause must have array, slice, string, map, or channel type
- for _, cmd := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:484:4: error: return with value in function with no return type
- return traverse(x.parent)
- ^
- vendor/github.com/spf13/cobra/command.go:486:3: error: return with value in function with no return type
- return x
- ^
- vendor/github.com/spf13/cobra/command.go:501:2: error: return with value in function with no return type
- return findRoot(c)
- ^
- vendor/github.com/spf13/cobra/command.go:496:4: error: return with value in function with no return type
- return findRoot(x.parent)
- ^
- vendor/github.com/spf13/cobra/command.go:498:3: error: return with value in function with no return type
- return x
- ^
- vendor/github.com/spf13/cobra/command.go:539:10: error: reference to undefined name ‘flag’
- return flag.ErrHelp
- ^
- vendor/github.com/spf13/cobra/command.go:623:3: error: not enough arguments to return
- return c.Root().ExecuteC()
- ^
- vendor/github.com/spf13/cobra/command.go:660:13: error: reference to undefined name ‘flag’
- if err == flag.ErrHelp {
- ^
- vendor/github.com/spf13/cobra/command.go:724:2: error: return with value in function with no return type
- return c.commands
- ^
- vendor/github.com/spf13/cobra/command.go:751:24: error: argument 1 must be a slice
- c.commands = append(c.commands, x)
- ^
- vendor/github.com/spf13/cobra/command.go:766:21: error: argument 1 must be a slice
- commands = append(commands, command)
- ^
- vendor/github.com/spf13/cobra/command.go:759:2: error: range clause must have array, slice, string, map, or channel type
- for _, command := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:773:2: error: range clause must have array, slice, string, map, or channel type
- for _, command := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:889:4: error: range clause must have array, slice, string, map, or channel type
- for _, y := range x.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:913:2: error: range clause must have array, slice, string, map, or channel type
- for _, a := range c.Aliases {
- ^
- vendor/github.com/spf13/cobra/command.go:968:2: error: range clause must have array, slice, string, map, or channel type
- for _, sub := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:984:2: error: range clause must have array, slice, string, map, or channel type
- for _, sub := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:1000:2: error: range clause must have array, slice, string, map, or channel type
- for _, sub := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:1018:2: error: return with value in function with no return type
- return c.globNormFunc
- ^
- vendor/github.com/spf13/cobra/command.go:1030:2: error: return with value in function with no return type
- return c.flags
- ^
- vendor/github.com/spf13/cobra/command.go:1048:2: error: return with value in function with no return type
- return local
- ^
- vendor/github.com/spf13/cobra/command.go:1077:2: error: return with value in function with no return type
- return inherited
- ^
- vendor/github.com/spf13/cobra/command.go:1082:2: error: return with value in function with no return type
- return c.LocalFlags()
- ^
- vendor/github.com/spf13/cobra/command.go:1094:2: error: return with value in function with no return type
- return c.pflags
- ^
- vendor/github.com/spf13/cobra/command.go:1101:12: error: reference to undefined name ‘flag’
- c.flags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)
- ^
- vendor/github.com/spf13/cobra/command.go:1101:38: error: reference to undefined name ‘flag’
- c.flags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)
- ^
- vendor/github.com/spf13/cobra/command.go:1103:13: error: reference to undefined name ‘flag’
- c.pflags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)
- ^
- vendor/github.com/spf13/cobra/command.go:1103:39: error: reference to undefined name ‘flag’
- c.pflags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)
- ^
- vendor/github.com/spf13/cobra/command.go:1157:2: error: return with value in function with no return type
- return c.parent
- ^
- vendor/github.com/spf13/cobra/command.go:1165:14: error: reference to undefined name ‘flag’
- c.lflags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)
- ^
- vendor/github.com/spf13/cobra/command.go:1165:40: error: reference to undefined name ‘flag’
- c.lflags = flag.NewFlagSet(c.Name(), flag.ContinueOnError)
- ^
- vendor/github.com/spf13/cobra/command.go:1178:4: error: reference to undefined name ‘flag’
- flag.CommandLine.VisitAll(func(f *flag.Flag) {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:271:6: error: invalid type for range clause
- for _, c := range cmd.Commands() {
- ^
- vendor/github.com/spf13/cobra/bash_completions.go:401:7: error: invalid type for range clause
- for key := range flag.Annotations {
- ^
- vendor/github.com/spf13/cobra/command.go:185:6: error: invalid type for range clause
- for _, command := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:309:6: error: invalid type for range clause
- for _, x := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:445:9: error: invalid type for range clause
- for _, s := range suggestions {
- ^
- vendor/github.com/spf13/cobra/command.go:404:7: error: invalid type for range clause
- for _, cmd := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:458:6: error: invalid type for range clause
- for _, cmd := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:759:6: error: invalid type for range clause
- for _, command := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:773:6: error: invalid type for range clause
- for _, command := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:889:8: error: invalid type for range clause
- for _, y := range x.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:913:6: error: invalid type for range clause
- for _, a := range c.Aliases {
- ^
- vendor/github.com/spf13/cobra/command.go:968:6: error: invalid type for range clause
- for _, sub := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:984:6: error: invalid type for range clause
- for _, sub := range c.commands {
- ^
- vendor/github.com/spf13/cobra/command.go:1000:6: error: invalid type for range clause
- for _, sub := range c.commands {
- ^
- # github.com/derekparker/delve/vendor/golang.org/x/debug/elf
- vendor/golang.org/x/debug/elf/file.go:16:26: error: import file ‘golang.org/x/debug/dwarf’ not found
- "golang.org/x/debug/dwarf"
- ^
- vendor/golang.org/x/debug/elf/file.go:574:31: error: expected package
- func (f *File) DWARF() (*dwarf.Data, error) {
- ^
- vendor/golang.org/x/debug/elf/file.go:589:4: error: return with value in function with no return type
- return nil, err
- ^
- vendor/golang.org/x/debug/elf/file.go:600:4: error: return with value in function with no return type
- return nil, err
- ^
- vendor/golang.org/x/debug/elf/file.go:604:4: error: return with value in function with no return type
- return nil, err
- ^
- vendor/golang.org/x/debug/elf/file.go:611:3: error: return with value in function with no return type
- return nil, err
- ^
- vendor/golang.org/x/debug/elf/file.go:619:5: error: return with value in function with no return type
- return nil, err
- ^
- vendor/golang.org/x/debug/elf/file.go:631:6: error: return with value in function with no return type
- return nil, err
- ^
- vendor/golang.org/x/debug/elf/file.go:635:6: error: return with value in function with no return type
- return nil, err
- ^
- vendor/golang.org/x/debug/elf/file.go:622:4: error: range clause must have array, slice, string, map, or channel type
- for _, r := range f.Sections {
- ^
- vendor/golang.org/x/debug/elf/file.go:641:5: error: return with value in function with no return type
- return nil, err
- ^
- vendor/golang.org/x/debug/elf/file.go:615:2: error: range clause must have array, slice, string, map, or channel type
- for i, s := range f.Sections {
- ^
- vendor/golang.org/x/debug/elf/file.go:646:2: error: return with value in function with no return type
- return d, nil
- ^
- vendor/golang.org/x/debug/elf/file.go:615:6: error: invalid type for range clause
- for i, s := range f.Sections {
- ^
- vendor/golang.org/x/debug/elf/file.go:615:6: error: invalid type for range clause
- Makefile:47: recipe for target 'install' failed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement