Home | History | Annotate | Download | only in json

Lines Matching refs:rawText

750 		rawText  = RawMessage([]byte(`"foo"`))
803 {rawText, `"foo"`, true}, // Issue6458
804 {&rawText, `"foo"`, true},
805 {[]interface{}{rawText}, `["foo"]`, true}, // Issue6458
806 {&[]interface{}{rawText}, `["foo"]`, true}, // Issue6458
807 {[]interface{}{&rawText}, `["foo"]`, true},
808 {&[]interface{}{&rawText}, `["foo"]`, true},
809 {struct{ M RawMessage }{rawText}, `{"M":"foo"}`, true}, // Issue6458
810 {&struct{ M RawMessage }{rawText}, `{"M":"foo"}`, true},
811 {struct{ M *RawMessage }{&rawText}, `{"M":"foo"}`, true},
812 {&struct{ M *RawMessage }{&rawText}, `{"M":"foo"}`, true},
813 {map[string]interface{}{"M": rawText}, `{"M":"foo"}`, true}, // Issue6458
814 {&map[string]interface{}{"M": rawText}, `{"M":"foo"}`, true}, // Issue6458
815 {map[string]interface{}{"M": &rawText}, `{"M":"foo"}`, true},
816 {&map[string]interface{}{"M": &rawText}, `{"M":"foo"}`, true},
817 {T1{rawText}, `{"M":"foo"}`, true}, // Issue6458
818 {T2{&rawText}, `{"M":"foo"}`, true},
819 {&T1{rawText}, `{"M":"foo"}`, true},
820 {&T2{&rawText}, `{"M":"foo"}`, true},