Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(471)

Side by Side Diff: third_party/golang/README

Issue 1415513008: Local modifications of golang source: Sort the keys of a map when printing them. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/golang/src/fmt/print.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Name: Go 1 Name: Go
2 URL: https://golang.org/src 2 URL: https://golang.org/src
3 Version: 1.5.1 3 Version: 1.5.1
4 License: BSD-style 4 License: BSD-style
5 License File: LICENSE 5 License File: LICENSE
6 6
7 Description: 7 Description:
8 The src subdirectory contains a small number of Go source files 8 The src subdirectory contains a small number of Go source files
9 downloaded from https://golang.org/src and modified by the Mojo authors as 9 downloaded from https://golang.org/src and modified by the Mojo authors as
10 described below. 10 described below.
11 11
12 Local Changes: 12 Local Changes:
13 - The fmt package has been modified with regards to how it uses reflection 13 - The fmt package has been modified with regards to how it uses reflection
14 to deep print Go structures. Firstly instead of only following pointers 14 to deep print Go structures:
15 for one level we now follow pointers for 50 levels. Secondly instead of 15 * Instead of only following pointers for one level we now follow pointers for
16 printing the address of a string pointer we print the string. 16 50 levels.
17 * Instead of printing the address of a string pointer we print the string.
18 * Instead of printing maps in an unspecified order we sort the keys of
19 the map if they are of numeric or string type.
OLDNEW
« no previous file with comments | « no previous file | third_party/golang/src/fmt/print.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698