Files
swift-mirror/test/IDE/complete_pound_decl.swift
Alex Hoppen 32eff21977 [IDE] Remove "Begin completions" and "End completions" from test cases
These test lines weren't actually providing any value and were annoying to write. Let's jut remove them.
2023-03-22 09:07:17 -07:00

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