Tagged Questions

Irony is a development kit for implementing languages on .NET platform

learn more… | top users | synonyms

12
votes
1answer
280 views

Irony: How to give KeyTerm precedence over variable?

Relevant chunk of Irony grammar: var VARIABLE = new RegexBasedTerminal("variable", @"(?-i)\$?\w+"); variable.Rule = VARIABLE; tag_blk.Rule = html_tag_kw + attr_args_opt + block; term_simple.Rule = ...
6
votes
5answers
931 views

How long has EStackOverflow been deprecated and what replaces it?

I noticed that EStackOverflow, as defined in SysUtils.pas is marked as deprecated in Delphi 2009. I checked and it was also marked as deprecated in 2007. I have a Delphi 7 install disk here, but I ...
4
votes
1answer
237 views

Is there an existing ANTLR or IRONY grammar for R?

Does anyone know if there is an existing existing ANTLR or IRONY grammar for R? Many thanks.
4
votes
3answers
943 views

Issue resolving a shift-reduce conflict in my grammar

I'm trying to write a small parser with Irony. Unfortunately I get a "shift-reduce conflict". Grammars are not my strong point, and I only need to get this one small thingy done. Here's the reduced ...
3
votes
5answers
406 views

Irony: How to disallow a space between 2 tokens?

I'm trying to define PHP-style variables in Irony like so: variable.Rule = "$" + identifier; Works great, except that you're allowed to put spaces between the $ and the identifier. I want to ...
3
votes
1answer
548 views

Irony: Tutorial on evaluating AST nodes?

I've defined a simple grammar in Irony, and generated a nice compact AST. Now I'm trying to figure out how to evaluate it. Problem is, I can't find any tutorials on how to do this. I've defined ...
2
votes
2answers
26 views

traversing an ast having complex conditional expression to generate linq expression

I'm using Irony.net for generating a parse tree out of the source. Essentially I'm using ExpressionEvaluatorGrammer like grammer for binary expressions (arithmetic, relational and ...
2
votes
1answer
155 views

I've created my first language in Irony, now how do I get it into Visual Studio 2010?

I tried following this, but I get an error at the end of the wizard. I'm not sure it's compatible with 2010. I'm watching this video on Ook, but I'm not sure how to tie it in with Irony. I think ...
2
votes
1answer
90 views

How to define syntax

I am new at language processing and I want to create a parser with Irony for a following syntax: name1:value1 name2:value2 name3:value ... where name1 is the name of an xml element and value is the ...
1
vote
1answer
123 views

can i do full text search including special characters?

I am using irony for full text search in c# application which works fine. Now my need is that i want to search a text including some special characters such as [, ], ;, ~, ', \, /, <, >, ,. When i ...
1
vote
1answer
140 views

Defining constants and operators in Irony

I'm new to Irony and the whole language implementation shebang, so I've been playing around with the ExpressionEvaluator sample that comes with the Irony source, which seems to (almost) suit my needs ...
1
vote
2answers
133 views

How can I define an “else” block?

Here's what I'm trying: foreach_in.Rule = ToTerm("foreach") + "(" + VARIABLE + "in" + list_obj + ")"; foreach_as.Rule = ToTerm("foreach") + "(" + list_obj + "as" + VARIABLE + ")"; for_loop.Rule = ...
1
vote
2answers
308 views

Installing a Custom Visual Studio Language Service

I've written a new Visual Studio language service for my software studio's internal scripting language following the directions from a very useful article Writing Your First Visual Studio Language ...
0
votes
1answer
40 views

Irony Language Toolkit - FreeTextLiteral usage

We have some special requirements around text templating that cannot be solved via any of the common packages (T4, NVelocity, StringTemplate..). So we have decided to attempt our own, using Irony. ...
0
votes
2answers
135 views

Analysing C# source with Irony

This is what my team and I chose to do for our school project. Well, actually we haven't decided on how to parse the C# source files yet. What we are aiming to achieve is, perform a full analysis on ...
0
votes
0answers
124 views

Irony-parser-like software for other languages than C#?

Are there any programs that do what Irony .NET language implementation kit does, but for other programming languages?
0
votes
3answers
470 views

Help with learning to use Irony for .net

I am trying to get up to speed with Irony. I keep seeing some terminology that I don't yet understand: terminals, non-terminals, token, state machine, Associativity, Abstract Syntax Tree. Can someone ...
-1
votes
0answers
26 views

Irony: capturing expressions exactly with a kind of MakePlusRule that preserves the delimiter as well

To capture a conditional expression , I'm using the following rule: condition.Rule = relation + logicOp + relation | "(" + condition + ")" | condition + logicOp + ...