Files
swift-mirror/test/IDE/Inputs/foo_swift_module.printed.comments.txt
Ben Langmuir 073d3a441c Print precedence and associativity of infix operator decls
To answer "did the user specify this, or is it implicit", stick a couple
of is-implicit bits in InfixOperatorDecl, and thread them through
serializaton/deserialization.

Swift SVN r20067
2014-07-17 03:20:01 +00:00

48 lines
570 B
Plaintext

infix operator %%% {
associativity left
precedence 200
}
func %%%(lhs: Int, rhs: Int) -> Int
struct BarGenericSwiftStruct1<T> {
init(t: T)
func bar1InstanceFunc()
}
struct BarGenericSwiftStruct2<T : BarProtocol, U> {
init(t: T, u: U)
func bar2InstanceFunc()
}
protocol BarProtocol {
func instanceFunc()
}
/// FooSwiftStruct Aaa.
/**
* Bbb.
* Ccc.
*/
struct FooSwiftStruct {
/// fooInstanceFunc Aaa.
/**
* Bbb
*/
/**
* Ccc.
*/
func fooInstanceFunc()
init()
}
func hiddenImport()
func overlayedFoo()
func visibleImport()