irony Questions

2

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...
Tapdance asked 11/4, 2011 at 1:58

2

I am trying to create a method that converts a regular sql statement to c# objects, So i decided to use Irony to parse the sql statement then i return the statement as an Action that contains the t...
Faddist asked 28/2, 2013 at 1:27

2

Solved

I have a grammar that works and parses in the Irony console just fine, but I don't get anything in the AST treeview. I was following along with the BASIC->Javascript article found here: http://www....
Ruthy asked 21/2, 2013 at 21:47

4

Solved

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...
Underwood asked 26/5, 2009 at 12:34

2

Solved

Does anyone know if there is an existing existing ANTLR or IRONY grammar for R? Many thanks.
Offish asked 18/4, 2011 at 15:54

5

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 pre...
Intensifier asked 21/2, 2011 at 1:54

2

Solved

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 ...
Superior asked 11/11, 2010 at 23:47

1

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...
Subtlety asked 14/2, 2011 at 8:6
1

© 2022 - 2024 — McMap. All rights reserved.