Commits · ampify
tav ·
3b79333f3bdb31ac38e4392d13e77c1342188add· ampify · githubMerged 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 |
| 5 | 5 | |
| 6 | 6 | TARG=amp/structure |
| 7 | 7 | GOFILES=\ |
| 8 | - structure.go\ | |
| 8 | + dict.go\ | |
| 9 | + prefixtree.go\ | |
| 9 | 10 | |
| 10 | 11 | include $(GOROOT)/src/Make.pkg |
| src/amp/dict/dict.go → src/amp/structure/dict.go | ||
| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | 1 | // Public Domain (-) 2011 The Ampify Authors. |
| 2 | 2 | // See the Ampify UNLICENSE file for details. |
| 3 | 3 | |
| 4 | -package dict | |
| 4 | +package structure | |
| 5 | 5 | |
| 6 | 6 | import ( |
| 7 | 7 | "sort" |
| src/amp/dict/dict_test.go → src/amp/structure/dict_test.go | ||
| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | 1 | // Public Domain (-) 2011 The Ampify Authors. |
| 2 | 2 | // See the Ampify UNLICENSE file for details. |
| 3 | 3 | |
| 4 | -package dict | |
| 4 | +package structure | |
| 5 | 5 | |
| 6 | 6 | import ( |
| 7 | 7 | "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 |
