Home | History | Annotate | Download | only in runtime

Lines Matching refs:string

22 	interfaceString string
23 concreteString string
24 assertedString string
25 missingMethod string // one method needed by Interface, missing from Concrete
30 func (e *TypeAssertionError) Error() string {
46 // An errorString represents a runtime error described by a single string.
47 type errorString string
51 func (e errorString) Error() string {
52 return "runtime error: " + string(e)
55 // plainError represents a runtime error described a string without
58 type plainError string
62 func (e plainError) Error() string {
63 return string(e)
67 String() string
70 func typestring(x interface{}) string {
72 return e._type.string()
81 print(v.String())
116 case string:
126 func stringsIndexByte(s string, c byte) int
144 throw("panicwrap: unexpected string after package name: " + name)
152 throw("panicwrap: unexpected string after type name: " + name)