Tagged Questions
The mgrammar tag has no wiki summary.
5
votes
3answers
571 views
Oslo's Intellipad: How to set up the 3 column MGrammarMode?
I've been using Oslo for MSchema. Works great. I can write an M Schema for a database design and it generates T-SQL to build the entire db with PKs, FKs, checks for integrity etc. I've set up a ...
3
votes
3answers
148 views
parse specific data in C#
I have data stored in specific text format:
FIDS_A1=CF_LAST:1|line_NETCHNG:2|QoS:3; FIDS_A2=[High and Low]:[{High} – {Low}]:1|CF_LAST:2; FIDS_A3=YR_RANGE:3|VOL:3; FIDS_A4=GR_AskBid; ...
3
votes
1answer
2k views
Shift reduce and reduce reduce conflicts
I'm having a hard time wrapping my head around this and need some help understanding shift reduce and reduce reduce conflicts. I have a grammar which I can't seem to understand why it's problematic. I ...
1
vote
1answer
136 views
Is it possible to parse multi-line c style comments in MGrammar?
I've been hacking around with the May09 Oslo bits, experimented with tokenizing some source code. I can't seem to figure out how to correctly handle multiline C-style comments though.
For example: ...
1
vote
1answer
76 views
Is there a better way to define a decimal in an MGrammar?
I'm working on a DSL in Microsoft's new M Grammar, and it needs to allow decimal values. I've defined decimal as
token digits = "0".."9";
token spot = ".";
token decimal = digits+ | digits+ spot ...
1
vote
0answers
79 views
MGrammar and more than one valid interpretation
I think what I may have is the dangling else problem, but I'm not really sure. The language I'm tasked with writing needs to support multi-line if statements as well as single line i.e.
...
1
vote
2answers
156 views
MGrammar grammar and variable declaration
I'm sure I'll get told to do it another way, but for specific reasons it has to be done this way. If it didn't, I wouldn't be stuck :-P
The scripting language I'm working on has to accept variables ...
0
votes
1answer
71 views
Parsing blocks of line comments using MGrammar
How can I parse blocks of line comments with MGrammar?
I want to parse blocks of line comments. Line comments that are next to each should grouped in the MGraph output.
I'm having trouble grouping ...
0
votes
1answer
30 views
Writing a parser with M, consume while not rule
I'm writing a HTML parser for my own amusement and I wanted to try out M.
I base this work on the HTML 4.01 standard and in there it says
Although the STYLE and SCRIPT elements
use CDATA for ...
0
votes
1answer
239 views
MGrammar for parsing IF statement
I am building up a MGrammar spec to parse some pseudo code looking for particular bits of information. I have most of the spec working except for 1 cruical element.
The pseudo code supports an ...