register immutable array to gob
This commit is contained in:
parent
fa6699f7ce
commit
4fac7b4013
1 changed files with 2 additions and 1 deletions
|
@ -42,11 +42,12 @@ func init() {
|
|||
gob.Register(&objects.Bool{})
|
||||
gob.Register(&objects.Char{})
|
||||
gob.Register(&objects.Array{})
|
||||
gob.Register(&objects.ImmutableArray{})
|
||||
gob.Register(&objects.Map{})
|
||||
gob.Register(&objects.ImmutableMap{})
|
||||
gob.Register(&objects.CompiledFunction{})
|
||||
gob.Register(&objects.Undefined{})
|
||||
gob.Register(&objects.Error{})
|
||||
gob.Register(&objects.ImmutableMap{})
|
||||
gob.Register(&objects.Bytes{})
|
||||
gob.Register(&objects.StringIterator{})
|
||||
gob.Register(&objects.MapIterator{})
|
||||
|
|
Loading…
Reference in a new issue