We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3bb829 commit 246ff43Copy full SHA for 246ff43
testlang.go
@@ -2,11 +2,14 @@ package errgoengine
2
3
import (
4
"context"
5
+
6
+ "github.com/smacker/go-tree-sitter/python"
7
)
8
9
var TestLanguage = &Language{
10
Name: "TestLang",
11
FilePatterns: []string{".test"},
12
+ SitterLanguage: python.GetLanguage(),
13
StackTracePattern: `\sin (?P<symbol>\S+) at (?P<path>\S+):(?P<position>\d+)`,
14
AnalyzerFactory: func(cd *ContextData) LanguageAnalyzer {
15
return &testAnalyzer{}
0 commit comments