From c8a91ed24932be7248eefed58ade4bb978b62f55 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 30 Jan 2020 16:38:15 -0800 Subject: [PATCH] doc/go1.14: mention changes to debug/dwarf Updates #36878 Change-Id: Icfbf9074c731d64198b4760e1902bbd09fcc1349 Reviewed-on: https://go-review.googlesource.com/c/go/+/217067 Reviewed-by: Austin Clements --- doc/go1.14.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/doc/go1.14.html b/doc/go1.14.html index 2f0e67ab68..2f73f0fdf7 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -512,6 +512,37 @@ TODO +
debug/dwarf
+
+

+ The debug/dwarf package now supports reading DWARF + version 5. +

+

+ The new + method (*Data).AddSection + supports adding arbitrary new DWARF sections from the input file + to the DWARF Data. +

+ +

+ The new + method (*Reader).ByteOrder + returns the byte order of the current compilation unit. + This may be used to interpret attributes that are encoded in the + native ordering, such as location descriptions. +

+ +

+ The new + method (*LineReader).Files + returns the file name table from a line reader. + This may be used to interpret the value of DWARF attributes such + as AttrDeclFile. +

+
+
+
encoding/asn1

-- 2.50.0