Tagged Questions
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
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
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 ...
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 ...