aboutsummaryrefslogtreecommitdiff
path: root/src/go/ast
AgeCommit message (Expand)Author
2024-03-28go/ast: more godoc linksOlivier Mengué
2023-10-19go: add available godoc linkcui fliter
2023-08-07go/ast: deprecate ObjectAlan Donovan
2023-07-20go/ast: add Unparen(Expr) helperAlan Donovan
2023-04-25go/ast: add IsGenerated(*File) predicateAlan Donovan
2023-04-11go/ast: add File.GoVersionRuss Cox
2022-09-28go/ast: record start and end of file in File.File{Start,End}Alan Donovan
2022-09-09go/ast: use strings.Buildercui fliter
2022-09-06go/ast: using strings.Buildercuiweixie
2022-09-05go/ast: add Range token.Pos to RangeStmtcuiweixie
2022-04-11go/ast, go/printer: recognize export and extern line directivesRuss Cox
2022-04-11all: gofmt main repoRuss Cox
2022-04-11go/printer: format doc commentsRuss Cox
2022-04-01all: remove trailing blank doc comment linesRuss Cox
2022-04-01all: fix TODO comment hanging indentsRuss Cox
2022-01-12go/ast: mention that FieldLists can now be enclosed by bracketsRobert Findley
2021-12-13all: gofmt -w -r 'interface{} -> any' srcRuss Cox
2021-10-28go/types, types2, go/ast, go/parser: remove support for type listsRobert Findley
2021-10-26all: use reflect.{Pointer,PointerTo}Cuong Manh Le
2021-10-08go/ast, go/types: remove some stale TODOsRobert Findley
2021-09-08go/ast: rename MultiIndexExpr to IndexListExprRobert Findley
2021-09-08go/ast: rename TParams fields to TypeParamsRobert Findley
2021-09-03Revert "go/ast: clarify when Ident.Obj is nil"Tim King
2021-09-03go/ast: clarify when Ident.Obj is nilCuong Manh Le
2021-07-16[dev.typeparams] go/*: switch from ListExpr to MultiIndexExprRob Findley
2021-06-17[dev.typeparams] go/ast: remove the typeparams build constraintRob Findley
2021-05-28go/ast: remove FuncDecl.IsMethod for Go 1.17Rob Findley
2021-05-05go/parser: don't parse a nil IndexExpr.IndexRob Findley
2021-04-30go/ast: print CommentMap contents in source orderRobert Griesemer
2021-04-14go/ast: fix broken build with typeparams build constraintRob Findley
2021-04-13go/*,cmd/gofmt: guard AST changes with the typeparams build tagRob Findley
2021-03-30go/ast: add missing handling for ListExpr in WalkRob Findley
2021-02-18[dev.typeparams] go/types: use a new ast.ListExpr for multi-type instancesRob Findley
2020-12-08[dev.typeparams] go/*: add TODOs from CLs importing dev.go2go changesRob Findley
2020-11-19[dev.typeparams] Merge branch 'master' into dev.typeparamsRobert Griesemer
2020-11-18go/ast: document invalid comment end positions with CRLF line endingsRebecca Stambler
2020-11-03[dev.typeparams] merge master into dev.typeparamsRob Findley
2020-11-03go/ast: add test for FilterHeisenberg
2020-10-22go/ast: import AST changes supporting typeparams from dev.go2goRob Findley
2020-09-06go/ast: note that in BasicLit CHARs and STRINGs are quotedAlberto Donizetti
2020-04-29go/ast: drop //directive comments from doc.TextRuss Cox
2020-03-23go/ast: fix inflection in comments to match pluralityAllen Li
2019-12-09go/ast: fix a few incorrect "an" articlesDaniel Martí
2019-10-28go/ast: fix SortImports to handle block comments (take 2)Agniva De Sarker
2019-10-28go/parser, go/ast: correctly take into account presence of } in blockRobert Griesemer
2019-09-02cmd/doc: make -src mode deterministicIvan Trubach
2019-08-08Revert "go/ast: fix SortImports to handle block comments"Joe Tsai
2019-04-15go/token: add IsIdentifier, IsKeyword, and IsExportedDaniel Martí
2019-03-28go/ast: fix SortImports to handle block commentsAgniva De Sarker
2019-02-27go/ast: break out after first variable in ExampleCommentMapgo101