Irony (framework)

Irony
Developer(s) Roman Ivantsov
Written in C#
Operating system Cross-platform
Platform .NET Framework
License MIT License
Website http://irony.codeplex.com/

Irony is a parser generator framework for language implementation on the .NET platform. Unlike most existing yacc/lex-style solutions, it does not employ code generation of a scanner/parser from grammars written in an external DSL. The grammars for the target language are coded directly in C# instead. The framework implements a LALR(1) parser.[1]

Design

Terminal and nonterminal symbols and production rules are defined in an object oriented flavor of the EBNF using operator overloading. The framework allows for the generation of an abstract syntax tree which can be traversed using the visitor pattern or evaluated using an interpreter.

Uses

See also

References

  1. http://langnetsymposium.com/2009/talks/12-RomanIvantsov-Irony.html
This article is issued from Wikipedia - version of the 4/12/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.