func (s *IncludesFinderWithRegExp) Run(ctx *types.Context) error { source := *s.Source match := INCLUDE_REGEXP.FindStringSubmatch(source) if match != nil { ctx.IncludeJustFound = strings.TrimSpace(match[1]) } else { ctx.IncludeJustFound = findIncludeForOldCompilers(source) } return nil }