Commits · ampify

tav  ·  3b79333f3bdb31ac38e4392d13e77c1342188add  ·  ampify  ·  github 1311935730

Merged the amp/dict package into amp/structure.

Changes

src/amp/dict/Makefile → /dev/null
......@@ -1,10 +0,0 @@
1
-# Public Domain (-) 2011 The Ampify Authors.
2
-# See the Ampify UNLICENSE file for details.
3
-
4
-include $(GOROOT)/src/Make.inc
5
-
6
-TARG=amp/dict
7
-GOFILES=\
8
-        dict.go\
9
-
10
-include $(GOROOT)/src/Make.pkg
src/amp/structure/Makefile
......@@ -5,6 +5,7 @@ include $(GOROOT)/src/Make.inc
55
 
66
 TARG=amp/structure
77
 GOFILES=\
8
-        structure.go\
8
+		dict.go\
9
+        prefixtree.go\
910
 
1011
 include $(GOROOT)/src/Make.pkg
src/amp/dict/dict.go → src/amp/structure/dict.go
......@@ -1,7 +1,7 @@
11
 // Public Domain (-) 2011 The Ampify Authors.
22
 // See the Ampify UNLICENSE file for details.
33
 
4
-package dict
4
+package structure
55
 
66
 import (
77
 	"sort"
src/amp/dict/dict_test.go → src/amp/structure/dict_test.go
......@@ -1,7 +1,7 @@
11
 // Public Domain (-) 2011 The Ampify Authors.
22
 // See the Ampify UNLICENSE file for details.
33
 
4
-package dict
4
+package structure
55
 
66
 import (
77
 	"testing"
src/amp/structure/structure.go → src/amp/structure/prefixtree.go
file renamed without changes
src/amp/structure/structure_test.go → src/amp/structure/prefixtree_test.go
file renamed without changes