]> Cypherpunks repositories - gostls13.git/commit
spec: remove need for separate Function production (cleanup)
authorRobert Griesemer <gri@golang.org>
Thu, 1 Feb 2018 22:08:45 +0000 (14:08 -0800)
committerRobert Griesemer <gri@golang.org>
Fri, 2 Feb 2018 00:22:16 +0000 (00:22 +0000)
commit851e98f0ee59d3027ec82363aedc741ad14100f9
tree64173f8c168fc5b1cf628f9c097126195892f125
parentcbe1a61e74cee4e4f7f93529da56edb1a4e878a9
spec: remove need for separate Function production (cleanup)

The EBNF production

Function = Signature FunctionBody .

was used in FunctionDecl, MethodDecl, and FunctionLit, but only
for the latter it shortened the syntax slightly.

This change "inlines" Function which simplifies FunctionDecl and
MethodDecl and gets rid of the Function production.

This has no impact on the specified language. Also, the Function
production is never referred to by the prose, so it's safe to
remove it from the spec.

Finally, neither go/ast nor go/parser have a representation of
this production via a corresponding node or parse function, so
no possibly valuable documentation is lost, either.

Change-Id: Ia2875d31c6ec2d2079081ef481e50bad4f43c694
Reviewed-on: https://go-review.googlesource.com/91515
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Rob Pike <r@golang.org>
doc/go_spec.html