1
0
mirror of https://github.com/golang/go synced 2024-10-04 14:31:21 -06:00
go/src/pkg/exp/norm
Marcel van Lohuizen b40bd5efb7 exp/norm: implementation of decomposition and composing functionality.
forminfo.go:
- Wrappers for table data.
- Per Form dispatch table.
composition.go:
- reorderBuffer type.  Implements decomposition, reordering, and composition.
- Note: decompose and decomposeString fields in formInfo could be replaced by
  a pointer to the trie for the respective form.  The proposed design makes
  testing easier, though.
normalization.go:
- Temporarily added panic("not implemented") methods to make the tests run.
  These will be removed again with the next CL, which will introduce the
  implementation.

R=r, rogpeppe, mpvl, rsc
CC=golang-dev
https://golang.org/cl/4875043
2011-08-17 18:12:39 +10:00
..
composition_test.go exp/norm: implementation of decomposition and composing functionality. 2011-08-17 18:12:39 +10:00
composition.go exp/norm: implementation of decomposition and composing functionality. 2011-08-17 18:12:39 +10:00
forminfo.go exp/norm: implementation of decomposition and composing functionality. 2011-08-17 18:12:39 +10:00
Makefile exp/norm: implementation of decomposition and composing functionality. 2011-08-17 18:12:39 +10:00
maketables.go exp/norm: fix incorrect prints found by govet. 2011-08-14 14:02:48 +10:00
maketesttables.go exp/norm: added trie lookup code and associated tests. 2011-08-10 15:34:12 +02:00
norm_test.go exp/norm: fix build by adding a test placeholder 2011-08-05 08:25:49 +10:00
normalize.go exp/norm: implementation of decomposition and composing functionality. 2011-08-17 18:12:39 +10:00
tables.go exp/norm: generate trie struct in triegen.go for better encapsulation. 2011-08-12 17:44:14 +02:00
trie_test.go exp/norm: generate trie struct in triegen.go for better encapsulation. 2011-08-12 18:00:31 +02:00
trie.go exp/norm: added trie lookup code and associated tests. 2011-08-10 15:34:12 +02:00
triedata_test.go exp/norm: generate trie struct in triegen.go for better encapsulation. 2011-08-12 17:44:14 +02:00
triegen.go exp/norm: generate trie struct in triegen.go for better encapsulation. 2011-08-12 17:44:14 +02:00