mirror of
https://github.com/golang/go
synced 2024-11-19 03:24:40 -07:00
2e4132e53b
Change-Id: I7df2cfebbf2c44d189066a6d16770c753f7bf1d4 Reviewed-on: https://go-review.googlesource.com/c/158020 Reviewed-by: Ian Cottrell <iancottrell@google.com>
47 lines
2.7 KiB
Go
47 lines
2.7 KiB
Go
package builtins
|
|
|
|
func _() {
|
|
//@complete("", append, bool, byte, cap, close, complex, complex128, complex64, copy, delete, error, _false, float32, float64, imag, int, int16, int32, int64, int8, iota, len, make, new, _nil, panic, print, println, real, recover, rune, string, _true, uint, uint16, uint32, uint64, uint8, uintptr)
|
|
}
|
|
|
|
/* Create markers for builtin types. Only for use by this test.
|
|
/* append(slice []T, elems ...T) []T */ //@item(append, "append(slice []T, elems ...T)", "[]T", "func")
|
|
/* bool */ //@item(bool, "bool", "", "type")
|
|
/* byte */ //@item(byte, "byte", "", "type")
|
|
/* cap(v []T) int */ //@item(cap, "cap(v []T)", "int", "func")
|
|
/* close(c chan<- T) */ //@item(close, "close(c chan<- T)", "", "func")
|
|
/* complex(real float64, imag float64) */ //@item(complex, "complex(real float64, imag float64)", "complex128", "func")
|
|
/* complex128 */ //@item(complex128, "complex128", "", "type")
|
|
/* complex64 */ //@item(complex64, "complex64", "", "type")
|
|
/* copy(dst []T, src []T) int */ //@item(copy, "copy(dst []T, src []T)", "int", "func")
|
|
/* delete(m map[K]V, key K) */ //@item(delete, "delete(m map[K]V, key K)", "", "func")
|
|
/* error */ //@item(error, "error", "", "interface")
|
|
/* false */ //@item(_false, "false", "", "const")
|
|
/* float32 */ //@item(float32, "float32", "", "type")
|
|
/* float64 */ //@item(float64, "float64", "", "type")
|
|
/* imag(complex128) float64 */ //@item(imag, "imag(complex128)", "float64", "func")
|
|
/* int */ //@item(int, "int", "", "type")
|
|
/* int16 */ //@item(int16, "int16", "", "type")
|
|
/* int32 */ //@item(int32, "int32", "", "type")
|
|
/* int64 */ //@item(int64, "int64", "", "type")
|
|
/* int8 */ //@item(int8, "int8", "", "type")
|
|
/* iota */ //@item(iota, "iota", "", "const")
|
|
/* len(T) int */ //@item(len, "len(T)", "int", "func")
|
|
/* make(t T, size ...int) T */ //@item(make, "make(t T, size ...int)", "T", "func")
|
|
/* new(T) *T */ //@item(new, "new(T)", "*T", "func")
|
|
/* nil */ //@item(_nil, "nil", "", "var")
|
|
/* panic(interface{}) */ //@item(panic, "panic(interface{})", "", "func")
|
|
/* print(args ...T) */ //@item(print, "print(args ...T)", "", "func")
|
|
/* println(args ...T) */ //@item(println, "println(args ...T)", "", "func")
|
|
/* real(complex128) float64 */ //@item(real, "real(complex128)", "float64", "func")
|
|
/* recover() interface{} */ //@item(recover, "recover()", "interface{}", "func")
|
|
/* rune */ //@item(rune, "rune", "", "type")
|
|
/* string */ //@item(string, "string", "", "type")
|
|
/* true */ //@item(_true, "true", "", "const")
|
|
/* uint */ //@item(uint, "uint", "", "type")
|
|
/* uint16 */ //@item(uint16, "uint16", "", "type")
|
|
/* uint32 */ //@item(uint32, "uint32", "", "type")
|
|
/* uint64 */ //@item(uint64, "uint64", "", "type")
|
|
/* uint8 */ //@item(uint8, "uint8", "", "type")
|
|
/* uintptr */ //@item(uintptr, "uintptr", "", "type")
|