mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
These test lines weren't actually providing any value and were annoying to write. Let's jut remove them.
48 lines
1.7 KiB
Swift
48 lines
1.7 KiB
Swift
// Testing #if condition does not disturb code completion
|
|
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=POUND_IF_MEMATTR | %FileCheck %s -check-prefix=ATTR
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=POUND_IF_MEMBER | %FileCheck %s -check-prefix=MEMBER
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=POUND_ELSE_MEMBER | %FileCheck %s -check-prefix=MEMBER
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=POUND_ELSE_MEMATTR | %FileCheck %s -check-prefix=ATTR
|
|
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=POUND_IF_GBLATTR | %FileCheck %s -check-prefix=ATTR
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=POUND_IF_GBLNAME | %FileCheck %s -check-prefix=GLOBAL
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=POUND_ELIF_GBLNAME | %FileCheck %s -check-prefix=GLOBAL
|
|
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=POUND_ELIF_GBLATTR | %FileCheck %s -check-prefix=ATTR
|
|
|
|
// MEMBER: override func foo() {|}; name=foo()
|
|
|
|
// ATTR: available[#Declaration Attribute#]; name=available
|
|
|
|
// GLOBAL: Foo[#Foo#]; name=Foo
|
|
|
|
class Foo {
|
|
func foo() {}
|
|
}
|
|
|
|
class Bar : Foo {
|
|
#if true
|
|
@#^POUND_IF_MEMATTR^#
|
|
func f1() {}
|
|
|
|
#^POUND_IF_MEMBER^#
|
|
#else
|
|
#^POUND_ELSE_MEMBER^#
|
|
|
|
@#^POUND_ELSE_MEMATTR^#
|
|
func f1() {}
|
|
#endif
|
|
}
|
|
|
|
#if true
|
|
@#^POUND_IF_GBLATTR^#
|
|
func bar() {}
|
|
|
|
#^POUND_IF_GBLNAME^#
|
|
#elseif false
|
|
#^POUND_ELIF_GBLNAME^#
|
|
|
|
@#^POUND_ELIF_GBLATTR^#
|
|
func bar() {}
|
|
#endif
|