summaryrefslogtreecommitdiff
path: root/src/go/internal/srcimporter
Commit message (Expand)AuthorAgeFilesLines
* misc/cgo: move registerCgoTests tests to cmd/cgo/internalAustin Clements2023-05-121-2/+1
* misc/cgo/test: simplify for module modeAustin Clements2022-11-041-2/+4
* all: use go/parser.SkipObjectResolution in more placesDaniel Martí2022-08-231-2/+2
* all: use os/exec instead of internal/execabsRuss Cox2022-05-021-1/+1
* go/internal/srcimporter: add context to cgo errorsBryan C. Mills2022-04-201-4/+4
* internal/testenv: add GOROOT and use it to fix tests broken with -trimpathBryan C. Mills2022-03-181-6/+3
* go/internal/srcimporter: use the 'go' command from the Importer's GOROOTBryan C. Mills2022-03-161-1/+5
* go: various minor cleanups with the help of Golandkumakichi2021-04-271-1/+1
* all: introduce and use internal/execabsRoland Shoemaker2021-01-211-1/+1
* all: update to use os.ReadDir where appropriateRuss Cox2020-12-091-2/+1
* all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTempRuss Cox2020-12-091-2/+1
* go/types: rename UsesCgo to go115UsesCgoMatthew Dempsky2020-06-101-1/+5
* all: use a hermetic "go" tool in standard-library testsBryan C. Mills2020-05-211-0/+10
* go/types: add UsesCgo config to support _cgo_gotypes.goMatthew Dempsky2020-05-012-1/+70
* Revert "go/types: add UsesCgo config to support _cgo_gotypes.go"Andrew Bonventre2020-04-272-70/+1
* go/types: add UsesCgo config to support _cgo_gotypes.goMatthew Dempsky2020-04-232-1/+70
* all: shorten some testsRuss Cox2019-05-221-2/+2
* all: move internal/x to vendor/golang.org/x and revendor using 'go mod vendor'Bryan C. Mills2019-03-111-5/+5
* internal/testenv: remove SetModVendorBryan C. Mills2019-03-081-2/+0
* all: add -mod=vendor to GOFLAGS in tests that execute 'go' commands within st...Bryan C. Mills2019-03-051-17/+1
* go/internal/srcimporter: set -mod=vendor before running testsBryan C. Mills2019-03-011-0/+18
* vendor/golang_org/x: move to internal/xBryan C. Mills2018-11-291-1/+1
* go/internal/srcimporter: simplify and fix package file lookupHiroshi Ioka2018-03-204-23/+47
* go/parser: simplify code to read from an io.Reader (cleanup)Robert Griesemer2018-02-121-16/+13
* go/importer: use named receiver types for methods of named interfacesRobert Griesemer2018-02-121-0/+38
* go/importer: make source importer more tolerant in presence of errorsgriesemer2017-08-163-7/+42
* go/importer: don't return packages that are not fully type-checkedRobert Griesemer2017-06-281-2/+5
* go/internal/srcimporter: skip tests on iOSElias Naur2017-03-081-3/+3
* go/internal/srcimporter: return (possibly incomplete) package in case of errorRobert Griesemer2017-03-061-4/+6
* go/types: add a compiler param to SizesForJosh Bleecher Snyder2017-03-021-1/+1
* go/internal/srcimporter: report reimport of incomplete packagesRobert Griesemer2017-03-012-13/+33
* go/internal/srcimporter: parse files concurrently (fixes TODO)Robert Griesemer2017-03-011-25/+45
* go/types: implement SizesFor convenience functionRobert Griesemer2017-02-281-18/+1
* go/internal/srcimporter: implemented srcimporterRobert Griesemer2017-02-272-0/+333