...

Source file src/github.com/mailru/easyjson/tests/escaping.go

Documentation: github.com/mailru/easyjson/tests

     1  package tests
     2  
     3  //easyjson:json
     4  type EscStringStruct struct {
     5  	A string `json:"a"`
     6  }
     7  
     8  //easyjson:json
     9  type EscIntStruct struct {
    10  	A int `json:"a,string"`
    11  }
    12  

View as plain text