Outline not working as expected for custom build tag #222
Description
I am using custom build tag in some of my GO files. The issue is that "Outline" panel in Eclipse shows error when the build tag is enabled. I was expecting "Outline" not to show error irrespective of the tag is // +build local or // +build !local
Is there a setting that I am missing or is this a bug?
Build Command:
${GO_TOOL_PATH} install -tags local -v -gcflags "-N -l" github.com/nirajbhatt7/Sample
sample.go
// +build local
Note: There is a blank line after the build. This builds the project and includes the sample.go but the "Outline" in Eclipse shows an error "Error parsing 'guru describe' result, for source structure update package ......"
sample.go
// +build !local
Note: This builds the project and does not include the sample.go. "Outline" in Eclipse does not show any error.