mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
move DotDotDot into next case - hit submit too fast last time.
R=rsc DELTA=5 (1 added, 2 deleted, 2 changed) OCL=18395 CL=18398
This commit is contained in:
parent
56a7895386
commit
1ff61cefaa
1 changed files with 3 additions and 4 deletions
|
|
@ -67,12 +67,11 @@ func TypeToString(typ Type, expand bool) string {
|
||||||
switch(typ.Kind()) {
|
switch(typ.Kind()) {
|
||||||
case MissingKind:
|
case MissingKind:
|
||||||
return "$missing$";
|
return "$missing$";
|
||||||
case DotDotDotKind:
|
|
||||||
return "...";
|
|
||||||
case IntKind, Int8Kind, Int16Kind, Int32Kind, Int64Kind,
|
case IntKind, Int8Kind, Int16Kind, Int32Kind, Int64Kind,
|
||||||
UintKind, Uint8Kind, Uint16Kind, Uint32Kind, Uint64Kind,
|
UintKind, Uint8Kind, Uint16Kind, Uint32Kind, Uint64Kind,
|
||||||
FloatKind, Float32Kind, Float64Kind, Float80Kind:
|
FloatKind, Float32Kind, Float64Kind, Float80Kind,
|
||||||
StringKind:
|
StringKind,
|
||||||
|
DotDotDotKind:
|
||||||
return typ.Name();
|
return typ.Name();
|
||||||
case PtrKind:
|
case PtrKind:
|
||||||
p := typ.(PtrType);
|
p := typ.(PtrType);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue