• Robert Griesemer's avatar
    go/scanner: clean up error interface · d08dd8be
    Robert Griesemer authored
    Issue 2856 asks for a rename of a few methods to a
    more idiomatic Go style. This is a very early API
    that evolved organically throughout the years.
    Together with the fact that ErrorVectors were embedded
    in other data structures (e.g. Parser), just renaming
    methods (e.g. GetError -> Error) would lead to undesired
    behavior (e.g., Parser would act like an Error). Instead,
    cleaned up API a bit more:
    
    - removed ErrorVector in favor of ErrorList (already
    present)
    - simplified Scanner.Init by making the error handler a
    function instead of requiring an ErrorHandler implementation
    - adjusted helper functions accordingly
    - updated Go 1 doc
    
    Fixes #2856.
    
    R=rsc
    CC=golang-dev
    https://golang.org/cl/5624047
    d08dd8be
Name
Last commit
Last update
doc Loading commit data...
include Loading commit data...
lib Loading commit data...
misc Loading commit data...
src Loading commit data...
test Loading commit data...
.hgignore Loading commit data...
.hgtags Loading commit data...
AUTHORS Loading commit data...
CONTRIBUTORS Loading commit data...
LICENSE Loading commit data...
PATENTS Loading commit data...
README Loading commit data...
favicon.ico Loading commit data...
robots.txt Loading commit data...