vantuz subhuman

- Total activity 40
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 12
-
Created Model dependencies change event
Hi! Is there a way to receive events when dependencies is added or removed?I've found an event like this only for modules, but couldn't find anything similar for models. In my language I have a ver... -
Edited Generators priority with `mps.lang.editor` when implementing custom CellModel
Hi! I want to implement custom `CellModel` to use in my language's editor. So I created additional language `myLanguage.util` where I have created new concept `CellModel_DynamicList`. I've used `Ce... -
Created How to generate variable declaration with references being preserved
Hi! In my language I have a complex statement that contains a complex expression and optional variable declaration.Structurally variable declaration is a child of my statement, cuz I wanted it to l... -
Edited Distribution script (Standalone IDE)
Hi! I am trying to create Standalone IDE for my test "Project", and I'm using this manual: https://confluence.jetbrains.com/display/MPSD33/Building+standalone+IDEs+for+your+languages I've used wi... -
Created Resolve generic field type in a typed class
Hi!I'm importing my java library into MPS project as "javaclasses", and my language's purpose is to work with those imported classes when user specifies a reference to one. Any classes with type pa... -
Created How to get text representation of AST, or access to TextGen
Hi!In my language I have a concept that contains baseLanguage.Expression as one of children.Before my generator is executed, I would like to get a textual representation of the whole AST of the exp... -
Created Design-time classpath of a solution, referenced from language
Hi!I have a project structure like this:1. Core-solution with java-stubs for my core java functionality2. Implementation-solution with java-stubs for my custom java functionality (classes implement... -
Created How to test model-wise Non-Typesystem rule?
Hi!I have a root concept named "Page". It extends "AbstractRoot".I also have a Non-Typesystem rule that there may not be two roots with the same name:check_Root_has_unique_name_in_model if (root.pa...