delete export

TBR=r
OCL=23121
CL=23127
This commit is contained in:
Russ Cox 2009-01-20 14:40:40 -08:00
parent 0183baaf44
commit 839a68469b
234 changed files with 1198 additions and 1199 deletions

View file

@ -24,7 +24,7 @@ var jsontests = []string {
`{"a":1}`,
}
export func TestJson(t *testing.T) {
func TestJson(t *testing.T) {
for i := 0; i < len(jsontests); i++ {
val, ok, errtok := StringToJson(jsontests[i]);
if !ok {
@ -39,7 +39,7 @@ export func TestJson(t *testing.T) {
}
}
export func TestJsonMap(t *testing.T) {
func TestJsonMap(t *testing.T) {
values := make(map[string]Json);
mapstr := "{";
for i := 0; i < len(jsontests); i++ {