more atoms
parent
7349613e56
commit
66fe4d7290
@ -0,0 +1,14 @@
|
|||||||
|
package ent
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/jordanorelli/hyperstone/bit"
|
||||||
|
)
|
||||||
|
|
||||||
|
func stringType(spec *typeSpec, env *Env) tÿpe {
|
||||||
|
if spec.typeName != "CUtlStringToken" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return typeFn(func(r bit.Reader) (value, error) {
|
||||||
|
return bit.ReadVarInt(r), r.Err()
|
||||||
|
})
|
||||||
|
}
|
Loading…
Reference in New Issue