1
1
mirror of https://github.com/github/semantic.git synced 2025-01-01 11:46:14 +03:00
semantic/prototype/Doubt/Swift.swift
2015-09-21 17:35:38 -04:00

7 lines
143 B
Swift

enum SwiftAST: Equatable {
case Atom(String)
case Symbol(String, [String])
case KeyValue(String, String)
case Branch(String, [SwiftAST])
}