Files
swift-mirror/test/SourceKit/CodeComplete/complete_sequence_crossfile.swift
2019-12-18 21:52:20 -08:00

56 lines
1.2 KiB
Swift

// BEGIN file1.swift
class Foo {
var x: Int
var y: Int
}
func foo(arg: Foo) {
_ = arg.
}
class Bar {
var a: Int
var b: Int
func barMethod() {}
}
// BEGIN file2.swift
extension Foo {
func fooMethod() {}
}
func bar(arg: Bar) {
_ = arg.
}
extension Bar {
func barMethod() {}
}
// BEGIN dummy.swift
// RUN: %empty-directory(%t)
// RUN: %{python} %utils/split_file.py -o %t %s
// RUN: %sourcekitd-test \
// RUN: -req=track-compiles == \
// RUN: -req=complete -req-opts=reuseastcontext=1 -pos=7:11 %t/file1.swift -- %t/file1.swift %t/file2.swift == \
// RUN: -req=complete -req-opts=reuseastcontext=1 -pos=6:11 %t/file2.swift -- %t/file1.swift %t/file2.swift > %t.response
// RUN: %FileCheck --check-prefix=RESULT %s < %t.response
// RUN: %FileCheck --check-prefix=TRACE %s < %t.response
// RESULT-LABEL: key.results: [
// RESULT-DAG: key.name: "fooMethod()"
// RESULT-DAG: key.name: "self"
// RESULT-DAG: key.name: "x"
// RESULT-DAG: key.name: "y"
// RESULT: ]
// RESULT-LABEL: key.results: [
// RESULT-DAG: key.name: "barMethod()"
// RESULT-DAG: key.name: "self"
// RESULT-DAG: key.name: "a"
// RESULT-DAG: key.name: "b"
// RESULT: ]
// TRACE-NOT: key.description: "completion reusing previous ASTContext (benign diagnostic)"