mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	* update code.gitea.io/sdk/gitea v0.13.1 -> v0.13.2 * update github.com/go-swagger/go-swagger v0.25.0 -> v0.26.0 * update github.com/google/uuid v1.1.2 -> v1.2.0 * update github.com/klauspost/compress v1.11.3 -> v1.11.7 * update github.com/lib/pq 083382b7e6fc -> v1.9.0 * update github.com/markbates/goth v1.65.0 -> v1.66.1 * update github.com/mattn/go-sqlite3 v1.14.4 -> v1.14.6 * update github.com/mgechev/revive 246eac737dc7 -> v1.0.3 * update github.com/minio/minio-go/v7 v7.0.6 -> v7.0.7 * update github.com/niklasfasching/go-org v1.3.2 -> v1.4.0 * update github.com/olivere/elastic/v7 v7.0.21 -> v7.0.22 * update github.com/pquerna/otp v1.2.0 -> v1.3.0 * update github.com/xanzy/go-gitlab v0.39.0 -> v0.42.0 * update github.com/yuin/goldmark v1.2.1 -> v1.3.1
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
// Copyright 2019 The Go Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a BSD-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package analysis
 | 
						|
 | 
						|
import "go/token"
 | 
						|
 | 
						|
// A Diagnostic is a message associated with a source location or range.
 | 
						|
//
 | 
						|
// An Analyzer may return a variety of diagnostics; the optional Category,
 | 
						|
// which should be a constant, may be used to classify them.
 | 
						|
// It is primarily intended to make it easy to look up documentation.
 | 
						|
//
 | 
						|
// If End is provided, the diagnostic is specified to apply to the range between
 | 
						|
// Pos and End.
 | 
						|
type Diagnostic struct {
 | 
						|
	Pos      token.Pos
 | 
						|
	End      token.Pos // optional
 | 
						|
	Category string    // optional
 | 
						|
	Message  string
 | 
						|
 | 
						|
	// SuggestedFixes contains suggested fixes for a diagnostic which can be used to perform
 | 
						|
	// edits to a file that address the diagnostic.
 | 
						|
	// TODO(matloob): Should multiple SuggestedFixes be allowed for a diagnostic?
 | 
						|
	// Diagnostics should not contain SuggestedFixes that overlap.
 | 
						|
	// Experimental: This API is experimental and may change in the future.
 | 
						|
	SuggestedFixes []SuggestedFix // optional
 | 
						|
 | 
						|
	// Experimental: This API is experimental and may change in the future.
 | 
						|
	Related []RelatedInformation // optional
 | 
						|
}
 | 
						|
 | 
						|
// RelatedInformation contains information related to a diagnostic.
 | 
						|
// For example, a diagnostic that flags duplicated declarations of a
 | 
						|
// variable may include one RelatedInformation per existing
 | 
						|
// declaration.
 | 
						|
type RelatedInformation struct {
 | 
						|
	Pos     token.Pos
 | 
						|
	End     token.Pos
 | 
						|
	Message string
 | 
						|
}
 | 
						|
 | 
						|
// A SuggestedFix is a code change associated with a Diagnostic that a user can choose
 | 
						|
// to apply to their code. Usually the SuggestedFix is meant to fix the issue flagged
 | 
						|
// by the diagnostic.
 | 
						|
// TextEdits for a SuggestedFix should not overlap. TextEdits for a SuggestedFix
 | 
						|
// should not contain edits for other packages.
 | 
						|
// Experimental: This API is experimental and may change in the future.
 | 
						|
type SuggestedFix struct {
 | 
						|
	// A description for this suggested fix to be shown to a user deciding
 | 
						|
	// whether to accept it.
 | 
						|
	Message   string
 | 
						|
	TextEdits []TextEdit
 | 
						|
}
 | 
						|
 | 
						|
// A TextEdit represents the replacement of the code between Pos and End with the new text.
 | 
						|
// Each TextEdit should apply to a single file. End should not be earlier in the file than Pos.
 | 
						|
// Experimental: This API is experimental and may change in the future.
 | 
						|
type TextEdit struct {
 | 
						|
	// For a pure insertion, End can either be set to Pos or token.NoPos.
 | 
						|
	Pos     token.Pos
 | 
						|
	End     token.Pos
 | 
						|
	NewText []byte
 | 
						|
}
 |