1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00

Arguments are a linked list.

This commit is contained in:
Rob Rix 2015-11-02 11:36:52 -05:00
parent f83bbf95d8
commit 1e3ab7aeeb

View File

@ -1,5 +1,6 @@
enum Argument {
case File(Source)
indirect case File(Source, Argument)
case End
}
let argumentsParser: Madness.Parser<[String], Argument>.Function = none()