mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* about * and * answering * because * before * cancellation * clear * comment * complete * corresponding * cursor * custom * dependencies * doesn't * expression * extension * immediately * implementation * implicit * innovation * intentionally * occasionally * oldest * parameter * property * response * reuseastcontext * snapshot * sourcekit_swift_runtime_link_flags * synchronously * target * that * unlabeled * usefulness * work Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
71 lines
2.1 KiB
Swift
71 lines
2.1 KiB
Swift
class Foo {
|
|
var x: Int
|
|
var y: Int
|
|
func fooMethod() {}
|
|
}
|
|
struct Bar {
|
|
var a: Int
|
|
var b: Int
|
|
func barMethod() {}
|
|
}
|
|
func foo(arg: Foo) {
|
|
_ = arg.
|
|
}
|
|
func bar(arg: Bar) {
|
|
_ = arg.
|
|
}
|
|
|
|
// NOTE: Tests for 'key.codecomplete.reuseastcontext' option.
|
|
|
|
// Disabled.
|
|
// RUN: %sourcekitd-test \
|
|
// RUN: -req=global-config -req-opts=completion_max_astcontext_reuse_count=0 ==\
|
|
// RUN: -req=complete -pos=12:11 %s -- %s == \
|
|
// RUN: -req=complete -pos=15:11 %s -- %s > %t.response
|
|
// RUN: %FileCheck --check-prefix=RESULT_SLOW %s < %t.response
|
|
|
|
// Enabled.
|
|
// RUN: %sourcekitd-test \
|
|
// RUN: -req=complete -pos=12:11 %s -- %s == \
|
|
// RUN: -req=complete -pos=15:11 %s -- %s > %t.response.reuseastcontext
|
|
// RUN: %FileCheck --check-prefix=RESULT_FAST %s < %t.response.reuseastcontext
|
|
|
|
// Enabled - compiler argument mismatch.
|
|
// RUN: %sourcekitd-test \
|
|
// RUN: -req=complete -pos=12:11 %s -- %s -DNOTUSED == \
|
|
// RUN: -req=complete -pos=15:11 %s -- -DNOTUSED %s > %t.response.reuseastcontext_argmismatch
|
|
// RUN: %FileCheck --check-prefix=RESULT_SLOW %s < %t.response.reuseastcontext_argmismatch
|
|
|
|
// RESULT_SLOW-LABEL: key.results: [
|
|
// RESULT_SLOW-DAG: key.name: "fooMethod()"
|
|
// RESULT_SLOW-DAG: key.name: "self"
|
|
// RESULT_SLOW-DAG: key.name: "x"
|
|
// RESULT_SLOW-DAG: key.name: "y"
|
|
// RESULT_SLOW: ]
|
|
// RESULT_SLOW-NOT: key.reusingastcontext: 1
|
|
|
|
// RESULT_SLOW-LABEL: key.results: [
|
|
// RESULT_SLOW-DAG: key.name: "barMethod()"
|
|
// RESULT_SLOW-DAG: key.name: "self"
|
|
// RESULT_SLOW-DAG: key.name: "a"
|
|
// RESULT_SLOW-DAG: key.name: "b"
|
|
// RESULT_SLOW: ]
|
|
// RESULT_SLOW-NOT: key.reusingastcontext: 1
|
|
|
|
|
|
// RESULT_FAST-LABEL: key.results: [
|
|
// RESULT_FAST-DAG: key.name: "fooMethod()"
|
|
// RESULT_FAST-DAG: key.name: "self"
|
|
// RESULT_FAST-DAG: key.name: "x"
|
|
// RESULT_FAST-DAG: key.name: "y"
|
|
// RESULT_FAST: ]
|
|
// RESULT_FAST-NOT: key.reusingastcontext: 1
|
|
|
|
// RESULT_FAST-LABEL: key.results: [
|
|
// RESULT_FAST-DAG: key.name: "barMethod()"
|
|
// RESULT_FAST-DAG: key.name: "self"
|
|
// RESULT_FAST-DAG: key.name: "a"
|
|
// RESULT_FAST-DAG: key.name: "b"
|
|
// RESULT_FAST: ]
|
|
// RESULT_FAST: key.reusingastcontext: 1
|