mirror of
https://github.com/github/semantic.git
synced 2025-01-01 11:46:14 +03:00
7 lines
143 B
Swift
7 lines
143 B
Swift
enum SwiftAST: Equatable {
|
|
case Atom(String)
|
|
case Symbol(String, [String])
|
|
case KeyValue(String, String)
|
|
case Branch(String, [SwiftAST])
|
|
}
|