Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
6672b40c
Commit
6672b40c
authored
Jun 14, 2010
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove uses of ... from tree, add one test
R=r CC=golang-dev
https://golang.org/cl/1662041
parent
44a17e9d
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
54 additions
and
47 deletions
+54
-47
src/pkg/exp/datafmt/datafmt.go
src/pkg/exp/datafmt/datafmt.go
+10
-7
src/pkg/exp/datafmt/datafmt_test.go
src/pkg/exp/datafmt/datafmt_test.go
+2
-12
src/pkg/reflect/all_test.go
src/pkg/reflect/all_test.go
+26
-2
src/pkg/reflect/type.go
src/pkg/reflect/type.go
+2
-2
src/pkg/testing/script/script.go
src/pkg/testing/script/script.go
+7
-3
test/fixedbugs/bug153.go
test/fixedbugs/bug153.go
+0
-14
test/fixedbugs/bug228.go
test/fixedbugs/bug228.go
+5
-5
test/fixedbugs/bug232.go
test/fixedbugs/bug232.go
+1
-1
test/fixedbugs/bug252.go
test/fixedbugs/bug252.go
+1
-1
No files found.
src/pkg/exp/datafmt/datafmt.go
View file @
6672b40c
...
...
@@ -661,7 +661,7 @@ func (s *State) eval(fexpr expr, value reflect.Value, index int) bool {
// in which is available in custom formatters through
// the state parameter.
//
func
(
f
Format
)
Eval
(
env
Environment
,
args
...
)
([]
byte
,
os
.
Error
)
{
func
(
f
Format
)
Eval
(
env
Environment
,
args
...
interface
{}
)
([]
byte
,
os
.
Error
)
{
if
f
==
nil
{
return
nil
,
os
.
NewError
(
"format is nil"
)
}
...
...
@@ -670,9 +670,12 @@ func (f Format) Eval(env Environment, args ...) ([]byte, os.Error) {
s
:=
newState
(
f
,
env
,
errors
)
go
func
()
{
value
:=
reflect
.
NewValue
(
args
)
.
(
*
reflect
.
StructValue
)
for
i
:=
0
;
i
<
value
.
NumField
();
i
++
{
fld
:=
value
.
Field
(
i
)
for
_
,
v
:=
range
args
{
fld
:=
reflect
.
NewValue
(
v
)
if
fld
==
nil
{
errors
<-
os
.
NewError
(
"nil argument"
)
return
}
mark
:=
s
.
save
()
if
!
s
.
eval
(
s
.
getFormat
(
typename
(
fld
.
Type
())),
fld
,
0
)
{
// TODO is 0 index correct?
s
.
restore
(
mark
)
...
...
@@ -693,7 +696,7 @@ func (f Format) Eval(env Environment, args ...) ([]byte, os.Error) {
// and writes to w. The result is the total number of bytes
// written and an os.Error, if any.
//
func
(
f
Format
)
Fprint
(
w
io
.
Writer
,
env
Environment
,
args
...
)
(
int
,
os
.
Error
)
{
func
(
f
Format
)
Fprint
(
w
io
.
Writer
,
env
Environment
,
args
...
interface
{}
)
(
int
,
os
.
Error
)
{
data
,
err
:=
f
.
Eval
(
env
,
args
)
if
err
!=
nil
{
// TODO should we print partial result in case of error?
...
...
@@ -707,7 +710,7 @@ func (f Format) Fprint(w io.Writer, env Environment, args ...) (int, os.Error) {
// and writes to standard output. The result is the total
// number of bytes written and an os.Error, if any.
//
func
(
f
Format
)
Print
(
args
...
)
(
int
,
os
.
Error
)
{
func
(
f
Format
)
Print
(
args
...
interface
{}
)
(
int
,
os
.
Error
)
{
return
f
.
Fprint
(
os
.
Stdout
,
nil
,
args
)
}
...
...
@@ -717,7 +720,7 @@ func (f Format) Print(args ...) (int, os.Error) {
// during formatting, the result string contains the
// partially formatted result followed by an error message.
//
func
(
f
Format
)
Sprint
(
args
...
)
string
{
func
(
f
Format
)
Sprint
(
args
...
interface
{}
)
string
{
var
buf
bytes
.
Buffer
_
,
err
:=
f
.
Fprint
(
&
buf
,
nil
,
args
)
if
err
!=
nil
{
...
...
src/pkg/exp/datafmt/datafmt_test.go
View file @
6672b40c
...
...
@@ -20,7 +20,7 @@ func parse(t *testing.T, form string, fmap FormatterMap) Format {
}
func
verify
(
t
*
testing
.
T
,
f
Format
,
expected
string
,
args
...
)
{
func
verify
(
t
*
testing
.
T
,
f
Format
,
expected
string
,
args
...
interface
{}
)
{
if
f
==
nil
{
return
// allow other tests to run
}
...
...
@@ -92,7 +92,7 @@ func TestCustomFormatters(t *testing.T) {
// ----------------------------------------------------------------------------
// Formatting of basic and simple composite types
func
check
(
t
*
testing
.
T
,
form
,
expected
string
,
args
...
)
{
func
check
(
t
*
testing
.
T
,
form
,
expected
string
,
args
...
interface
{}
)
{
f
:=
parse
(
t
,
form
,
nil
)
if
f
==
nil
{
return
// allow other tests to run
...
...
@@ -177,16 +177,6 @@ func TestFuncTypes(t *testing.T) {
}
func
TestInterfaceTypes
(
t
*
testing
.
T
)
{
var
i0
interface
{}
check
(
t
,
`interface="interface"`
,
`interface`
,
i0
)
i0
=
"foo"
check
(
t
,
`interface="interface"`
,
`interface`
,
i0
)
check
(
t
,
`interface=*; string="%s"`
,
`foo`
,
i0
)
}
func
TestMapTypes
(
t
*
testing
.
T
)
{
var
m0
map
[
string
]
int
check
(
t
,
`map="map"`
,
`map`
,
m0
)
...
...
src/pkg/reflect/all_test.go
View file @
6672b40c
...
...
@@ -6,6 +6,7 @@ package reflect_test
import
(
"container/vector"
"fmt"
"io"
"os"
.
"reflect"
...
...
@@ -139,10 +140,10 @@ var typeTests = []pair{
},
pair
{
struct
{
x
struct
{
f
func
(
args
...
)
f
func
(
args
...
int
)
}
}{},
"struct { f func(...) }"
,
"struct { f func(...
int
) }"
,
},
pair
{
struct
{
x
(
interface
{
...
...
@@ -1221,3 +1222,26 @@ func TestImportPath(t *testing.T) {
t
.
Errorf
(
"Typeof(vector.Vector{}).PkgPath() = %q, want
\"
container/vector
\"
"
,
path
)
}
}
func
TestDotDotDot
(
t
*
testing
.
T
)
{
// Test example from FuncType.DotDotDot documentation.
var
f
func
(
x
int
,
y
...
float
)
typ
:=
Typeof
(
f
)
.
(
*
FuncType
)
if
typ
.
NumIn
()
==
2
&&
typ
.
In
(
0
)
==
Typeof
(
int
(
0
))
{
sl
,
ok
:=
typ
.
In
(
1
)
.
(
*
SliceType
)
if
ok
{
if
sl
.
Elem
()
==
Typeof
(
float
(
0
))
{
// ok
return
}
}
}
// Failed
t
.
Errorf
(
"want NumIn() = 2, In(0) = int, In(1) = []float"
)
s
:=
fmt
.
Sprintf
(
"have NumIn() = %d"
,
typ
.
NumIn
())
for
i
:=
0
;
i
<
typ
.
NumIn
();
i
++
{
s
+=
fmt
.
Sprintf
(
", In(%d) = %s"
,
i
,
typ
.
In
(
i
))
}
t
.
Error
(
s
)
}
src/pkg/reflect/type.go
View file @
6672b40c
...
...
@@ -388,8 +388,8 @@ func (t *FuncType) In(i int) Type {
}
// DotDotDot returns true if the final function input parameter
// is a "..." parameter. If so, t
he parameter's underlying static
//
type - either interface{} or []T - is returned by t.In(t.NumIn() - 1)
.
// is a "..." parameter. If so, t
.In(t.NumIn() - 1) returns the
//
parameter's underlying static type []T
.
//
// For concreteness, if t is func(x int, y ... float), then
//
...
...
src/pkg/testing/script/script.go
View file @
6672b40c
...
...
@@ -129,8 +129,12 @@ func (s Send) getSend() sendAction { return s }
func
(
s
Send
)
getChannel
()
interface
{}
{
return
s
.
Channel
}
func
newEmptyInterface
(
args
...
)
reflect
.
Value
{
return
reflect
.
NewValue
(
args
)
.
(
*
reflect
.
StructValue
)
.
Field
(
0
)
type
empty
struct
{
x
interface
{}
}
func
newEmptyInterface
(
e
empty
)
reflect
.
Value
{
return
reflect
.
NewValue
(
e
)
.
(
*
reflect
.
StructValue
)
.
Field
(
0
)
}
func
(
s
Send
)
send
()
{
...
...
@@ -140,7 +144,7 @@ func (s Send) send() {
c
:=
reflect
.
NewValue
(
s
.
Channel
)
.
(
*
reflect
.
ChanValue
)
var
v
reflect
.
Value
if
iface
,
ok
:=
c
.
Type
()
.
(
*
reflect
.
ChanType
)
.
Elem
()
.
(
*
reflect
.
InterfaceType
);
ok
&&
iface
.
NumMethod
()
==
0
{
v
=
newEmptyInterface
(
s
.
Value
)
v
=
newEmptyInterface
(
empty
{
s
.
Value
}
)
}
else
{
v
=
reflect
.
NewValue
(
s
.
Value
)
}
...
...
test/fixedbugs/bug153.go
deleted
100644 → 0
View file @
44a17e9d
// errchk $G $D/$F.go
// Copyright 2009 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
main
func
f
(
args
...
)
{
}
func
main
()
{
f
(
nil
);
// ERROR "nil"
}
test/fixedbugs/bug228.go
View file @
6672b40c
...
...
@@ -6,14 +6,14 @@
package
main
func
f
(
x
int
,
y
...
)
// ok
func
f
(
x
int
,
y
...
int
)
// ok
func
g
(
x
int
,
y
float
)
(
...
)
// ERROR "[.][.][.]"
func
h
(
x
,
y
...
)
// ERROR "[.][.][.]"
func
h
(
x
,
y
...
int
)
// ERROR "[.][.][.]"
func
i
(
x
int
,
y
...
,
z
float
)
// ERROR "[.][.][.]"
func
i
(
x
int
,
y
...
int
,
z
float
)
// ERROR "[.][.][.]"
var
x
...
;
// ERROR "[.][.][.]|syntax|type"
var
x
...
int
;
// ERROR "[.][.][.]|syntax|type"
type
T
...
;
// ERROR "[.][.][.]|syntax|type"
type
T
...
int
;
// ERROR "[.][.][.]|syntax|type"
test/fixedbugs/bug232.go
View file @
6672b40c
...
...
@@ -5,4 +5,4 @@
// license that can be found in the LICENSE file.
package
main
type
I
interface
{
X
(
...
)
}
type
I
interface
{
X
(
...
int
)
}
test/fixedbugs/bug252.go
View file @
6672b40c
...
...
@@ -6,7 +6,7 @@
package
main
func
f
(
args
...
)
{
func
f
(
args
...
int
)
{
g
(
args
)
// ERROR "[.][.][.] mismatch"
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment