Fix hashability for graph.Value

This commit is contained in:
Barak Michener 2014-08-06 15:34:30 -04:00
parent 2bec255b52
commit 6f1e46c2d8
4 changed files with 41 additions and 19 deletions

View file

@ -117,8 +117,8 @@ func (it *AllIterator) Next() (graph.Value, bool) {
it.Close()
return nil, false
}
it.result = out
return out, true
it.result = Token(out)
return it.result, true
}
func (it *AllIterator) ResultTree() *graph.ResultTree {