mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:51:50 +00:00
This adds support for the OpenCodeGraph prototype. Feature-flagged off by default behind the `opencodegraph` feature flag. See https://www.loom.com/share/5549d92a7c244863ac86ce56692ca030 for more information. Also, for our CodeMirror, remove `background:transparent` so that line bg applies to block widgets
32 lines
874 B
Go
32 lines
874 B
Go
package opencodegraph
|
|
|
|
import (
|
|
"go/token"
|
|
|
|
"github.com/grafana/regexp"
|
|
"github.com/sourcegraph/sourcegraph/schema"
|
|
)
|
|
|
|
func firstSubmatchNamesAndRanges(pattern *regexp.Regexp, content string) (names []string, ranges []schema.OpenCodeGraphRange) {
|
|
fset := token.NewFileSet()
|
|
f := fset.AddFile("x", 1, len(content))
|
|
f.SetLinesForContent([]byte(content))
|
|
|
|
ms := pattern.FindAllStringSubmatchIndex(content, -1)
|
|
for _, m := range ms {
|
|
mstart := m[2]
|
|
mend := m[3]
|
|
start := f.Position(f.Pos(mstart))
|
|
end := f.Position(f.Pos(mend))
|
|
|
|
name := string(content[mstart:mend])
|
|
names = append(names, name)
|
|
ranges = append(ranges, schema.OpenCodeGraphRange{
|
|
Start: schema.OpenCodeGraphPosition{Line: start.Line - 1, Character: start.Column - 1},
|
|
End: schema.OpenCodeGraphPosition{Line: end.Line - 1, Character: end.Column - 1},
|
|
})
|
|
}
|
|
|
|
return names, ranges
|
|
}
|