mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* Serialize TopLevelDecls as an array of raw syntax nodes, instead of one-after-another. * Add tests for multiple decls * Remove extra newlines from test inputs
9 lines
162 B
Swift
9 lines
162 B
Swift
// RUN: %swift-syntax-test -input-source-filename %s -serialize-raw-tree > %t
|
|
// RUN: diff %t %S/Inputs/serialize_multiple_decls.json
|
|
|
|
struct A {
|
|
}
|
|
|
|
struct B {
|
|
}
|