Skip to content

Instantly share code, notes, and snippets.

@jagregory
Created October 21, 2008 23:51
Show Gist options
  • Save jagregory/18485 to your computer and use it in GitHub Desktop.
Save jagregory/18485 to your computer and use it in GitHub Desktop.
ometa GitNumstatParser : Parser {
FileStats = LineStats:lines '\t' Filename:name NewLine -> { new FileStats(lines[0].As<int>(), lines[1].As<int>(), name.As<string>()) },
LineStats = Number:adds '\t' Number:subs -> { adds, subs },
Filename = LetterOrDigit+:name '.' LetterOrDigit+:ext -> { name.As<string>() + "." + ext.As<string>() },
NewLine = '\r' '\n'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment