Igor Dejanović

Results 243 comments of Igor Dejanović

@aranega Thanks! I'm looking into the issue but it seems that it reaches deeper than I thought. Or maybe I got rusty with this code ;)

@aranega I've merged your changes but have changed solution a bit to be more idiomatic for textX. `_tx_metaclass` instance attribute is replaced by using a standard Python `type` call, i.e....

@aranega great progress! I'm always for cutting down on boilerplate code. Decorator in this case does exactly that and it looks more readable although it is a matter of personal...

Really happy to hear that tests are green! From the top of my head I think that there is no special reason why would recursive algorithm be better for textX....

@aranega Nice work! Looks good. I've merged your change upstream. Probably will check with some other projects using textX in the next days but so far works ok. It shows...

It is a one-time operation at the end of resolving so probably won't make much difference. A simple `del self._crossrefs` would probably be the easiest way.

Thanks, no problem ;)

Amazing work! Looks really great. There is an issue with Python 2.7 though: ``` E File "/home/igor/repos/textX/textx/metamodel.py", line 72 E class TextXMetaModel(*__TextXMetaModel_bases()): E ^ E SyntaxError: invalid syntax ``` I...

Ah, ok. I did a fork to fix some stuff in 2.4 that I need but I guess those fixes will stay there. The fixes are [here](https://github.com/igordejanovic/ninja-ide/tree/migration-fixes) in case someone...

Hi, John. Thanks for reporting. It would be great if you could make a full minimal example that exhibits the behavior.