summaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2013-08-14 14:58:28 -0400
committerRuss Cox <rsc@golang.org>2013-08-14 14:58:28 -0400
commitf188cf2c8dde03865617f63eb1a277aa899e7670 (patch)
tree73d79538ce4937501981ec1be47e788672ed8543 /api
parentba891e84e9dd4fac17fa765dd4e355c3b57adb1d (diff)
downloadgo-f188cf2c8dde03865617f63eb1a277aa899e7670.tar.gz
encoding/xml: add, support Marshaler interface
See golang.org/s/go12xml for design. Repeat of CL 12603044, which was submitted accidentally and then rolled back. Fixes issue 2771. Fixes issue 4169. Fixes issue 5975. Fixes issue 6125. R=golang-dev CC=golang-dev https://codereview.appspot.com/12919043
Diffstat (limited to 'api')
-rw-r--r--api/go1.1.txt1
-rw-r--r--api/go1.txt7
2 files changed, 0 insertions, 8 deletions
diff --git a/api/go1.1.txt b/api/go1.1.txt
index 2362a75f9..7cde99f13 100644
--- a/api/go1.1.txt
+++ b/api/go1.1.txt
@@ -92,7 +92,6 @@ pkg encoding/json, method (Number) String() string
pkg encoding/json, type Number string
pkg encoding/xml, func EscapeText(io.Writer, []uint8) error
pkg encoding/xml, method (*Encoder) Indent(string, string)
-pkg encoding/xml, method (Encoder) ReadFrom(io.Reader) (int64, error)
pkg encoding/xml, type Decoder struct, DefaultSpace string
pkg go/ast, func NewCommentMap(*token.FileSet, Node, []*CommentGroup) CommentMap
pkg go/ast, method (CommentMap) Comments() []*CommentGroup
diff --git a/api/go1.txt b/api/go1.txt
index 0d2e7c630..5e3dea5a3 100644
--- a/api/go1.txt
+++ b/api/go1.txt
@@ -2425,13 +2425,6 @@ pkg encoding/xml, method (*UnsupportedTypeError) Error() string
pkg encoding/xml, method (CharData) Copy() CharData
pkg encoding/xml, method (Comment) Copy() Comment
pkg encoding/xml, method (Directive) Copy() Directive
-pkg encoding/xml, method (Encoder) Available() int
-pkg encoding/xml, method (Encoder) Buffered() int
-pkg encoding/xml, method (Encoder) Flush() error
-pkg encoding/xml, method (Encoder) Write([]uint8) (int, error)
-pkg encoding/xml, method (Encoder) WriteByte(uint8) error
-pkg encoding/xml, method (Encoder) WriteRune(int32) (int, error)
-pkg encoding/xml, method (Encoder) WriteString(string) (int, error)
pkg encoding/xml, method (ProcInst) Copy() ProcInst
pkg encoding/xml, method (StartElement) Copy() StartElement
pkg encoding/xml, method (UnmarshalError) Error() string