mirror of
https://github.com/golang/go.git
synced 2025-05-08 00:53:07 +00:00
Before, they were named func@line:col which made them easy to find in the source if you know the file, but hard if you don't, and it made tests fragile. Now, they are named outer$1, outer$2, etc, which makes them more informative in a UI since "outer" has meaning. LGTM=crawshaw R=crawshaw CC=golang-codereviews https://golang.org/cl/65630048