Tagged Questions

3
votes
2answers
81 views

SVN Update adds ^M when conflicts?

We've been working on some files at the same time. Occasionally, when we "svn up" we'll see files with "^M"'s appended to every line of certain files. We originally blamed each o …
1
vote
1answer
47 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+ …
5
votes
3answers
385 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 …
0
votes
3answers
237 views

Explanation of Oslo error “M0197: ‘Text’ cannot be used in a Type context”?

In Microsoft Oslo SDK CTP 2008 (using Intellipad) the following code compiles fine: module M { type T { Text : Text; } } while compiling the below code leads to …
6
votes
4answers
393 views

What advantages does using Oslo and M have and when would you use it?

After attending a talk on Oslo/M I am struggling a bit to see the advantages of using it over existing methods and in what situation it would be useful. I know its quite new and n …
2
votes
6answers
576 views

Any insight on Microsoft’s new M programming language?

Does anyone have any insight on microsoft's new M programming language? Why? What type? When? What?
0
votes
1answer
69 views

Interesting uses of M?

I know M is a new language from Microsoft that's targeted as a modeling solution but I'm still a bit fuzzy on usage / rationale / advantages. That's why I'm looking for interesting …
1
vote
2answers
148 views

Explanation of Oslo error “M2037: SQL Generation Internal Error: Missing generator for variable”?

In Microsoft Oslo SDK CTP 2008 (using Intellipad) the following code compiles fine: module T { type A { Id : Integer32 = AutoNumber(); } where identity Id; A …