(source string)
| 10 | ) |
| 11 | |
| 12 | func parseSource(source string) *ast.SourceFile { |
| 13 | return parser.ParseSourceFile(ast.SourceFileParseOptions{ |
| 14 | FileName: "/test.ts", |
| 15 | }, source, core.ScriptKindTS) |
| 16 | } |
| 17 | |
| 18 | func TestParseDataForExtendsClassCompletion_AfterDot(t *testing.T) { |
| 19 | t.Parallel() |
no outgoing calls
no test coverage detected