jbrownson

- Total activity 65
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 14
-
Created Is it possible to reference a nested static class using baseLanguageInternal?
Specifically with InternalClassifierType and InternalNewExpression.From examining the code it seems that anything used in the fqClassName makes it in to the import statement so I'm getting nested c... -
Created Damned if I do, damned if I don't (ordering generator phases)
1. I have a generator phase that imports external references making all of them internal to essentially statically link referenced modules in my language. The referenced modules are detected automa... -
Created How to build my GText generated c++?
As some may have noticed from my earlier posts I'm making a self-contained language that generates to cxx using GText.I'm getting to the point where I'd like to set up the build system for it so I ... -
Created I generate a name in a weave, How can I reference it in a reduction?
Open the attached project in MPS 2.0 build 20.7566 Right click "sandbox" and select "Preview Generated Text" You will see 5 uniquely named Woven Thing2s and 5 reductions that don't yet referenc... -
Created InferenceMethod annotation red in 2.0
In my MPS project I use the InferenceMethod annotation on several static methods on a class so I can call the methods from Typesystem code. In 2.0 the annotation is showing red, and if I delete it ... -
Created Why does my language have to extend the language I want to output in my generator?
I have a completely self-contained language that doesn't extend any existing language that I want to generate c++ (well, gtext). This worked w/o complaint in 1.5, but I'm trying it in the recent 2.... -
Created Inference Methods: either I'm really not understanding something or this is a bug
In this simple language definition and its sandbox I have two Concept and one instance of each.The instance of Thing1 is correctly identified as having a type error due to it's typeOf method using ... -
Created How to create a Literal for something that isn't defined yet in your language?
I have a language "mylanguage" with a concept called "Class".I have a solution along side that language which has a module for that language called [mylanguage].core. In that module I define a Clas... -
Created Comma after every item (but on the same line) in a vertical child cell layout?
If I simply put ',' in the separator field I get a comma between the items, but it shows on its own line.I've experimented with a few separator style options and haven't found a way that works eith... -
Created How does hitting '<' in a baseLanguage class name work?
If you hit '<' at the end of a name in baseLanguage it creates an unnamed type variable. I've been browsing the models related to this but I don't see how it hooks that up.I'm trying to do somethin...