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 +
+ 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.
+