This repository has been archived by the owner on Feb 17, 2021. It is now read-only.
forked from mdempsky/gocode
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
165 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ language: go | |
go: | ||
- 1.9.x | ||
- 1.10.x | ||
- 1.11.x | ||
- master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,26 @@ | ||
Found 1 candidates: | ||
func New(text string) error | ||
Found 25 candidates: | ||
func Errorf(format string, a ...interface{}) error | ||
func Fprint(w banana.Writer, a ...interface{}) (n int, err error) | ||
func Fprintf(w banana.Writer, format string, a ...interface{}) (n int, err error) | ||
func Fprintln(w banana.Writer, a ...interface{}) (n int, err error) | ||
func Fscan(r banana.Reader, a ...interface{}) (n int, err error) | ||
func Fscanf(r banana.Reader, format string, a ...interface{}) (n int, err error) | ||
func Fscanln(r banana.Reader, a ...interface{}) (n int, err error) | ||
func Print(a ...interface{}) (n int, err error) | ||
func Printf(format string, a ...interface{}) (n int, err error) | ||
func Println(a ...interface{}) (n int, err error) | ||
func Scan(a ...interface{}) (n int, err error) | ||
func Scanf(format string, a ...interface{}) (n int, err error) | ||
func Scanln(a ...interface{}) (n int, err error) | ||
func Sprint(a ...interface{}) string | ||
func Sprintf(format string, a ...interface{}) string | ||
func Sprintln(a ...interface{}) string | ||
func Sscan(str string, a ...interface{}) (n int, err error) | ||
func Sscanf(str string, format string, a ...interface{}) (n int, err error) | ||
func Sscanln(str string, a ...interface{}) (n int, err error) | ||
type Formatter interface | ||
type GoStringer interface | ||
type ScanState interface | ||
type Scanner interface | ||
type State interface | ||
type Stringer interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
package p | ||
|
||
import "errors" | ||
import ( | ||
"fmt" | ||
banana "io" | ||
) | ||
|
||
func f() { | ||
errors.@ | ||
} | ||
var _ = fmt.@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"IgnoreCase": false} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Found 1 candidates: | ||
func FuncX() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package p | ||
|
||
func FuncX() {} | ||
func funcY() {} | ||
|
||
func f() { | ||
Fun@ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"IgnoreCase": false} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Found 1 candidates: | ||
func funcY() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package p | ||
|
||
func FuncX() {} | ||
func funcY() {} | ||
|
||
func f() { | ||
fun@ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"IgnoreCase": true} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Found 2 candidates: | ||
func FuncX() | ||
func funcY() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package p | ||
|
||
func FuncX() {} | ||
func funcY() {} | ||
|
||
func f() { | ||
fun@ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters