Skip to content

Instantly share code, notes, and snippets.

View lextm's full-sized avatar
💭
I may be slow to respond.

Lex Li lextm

💭
I may be slow to respond.
View GitHub Profile
@lextm
lextm / antlr_csharp_exception
Created July 27, 2012 01:30
ANTLR simplest exception handling in C#
// Alter code generation so catch-clauses get replace with
// this action.
@rulecatch{
catch (RecognitionException)
{
throw;
}
}