...

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

Documentation: github.com/mailru/easyjson/tests

     1  package tests
     2  
     3  //easyjson:skip
     4  type TypeSkipped struct {
     5  	Value string
     6  }
     7  
     8  type TypeNotSkipped struct {
     9  	Value string
    10  }
    11  
    12  var (
    13  	myTypeNotSkippedValue  = TypeDeclared{Value: "TypeNotSkipped"}
    14  	myTypeNotSkippedString = `{"Value":"TypeNotSkipped"}`
    15  )
    16  

View as plain text