Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InternalGoFiles (0.21 sec)

  1. src/cmd/go/internal/generate/generate.go

    			// one .go source file, so the fact that there are no files
    			// implies that the package couldn't be found.
    			base.Errorf("%v", pkg.Error)
    		}
    
    		for _, file := range pkg.InternalGoFiles() {
    			if !generate(file) {
    				break
    			}
    		}
    
    		for _, file := range pkg.InternalXGoFiles() {
    			if !generate(file) {
    				break
    			}
    		}
    	}
    	base.ExitIfErrors()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top