Hi,

I propose to change this:

MoosModel>>sourceLanguage: aSymbol
^sourceLanguage := aSymbol

by:

MoosModel>>sourceLanguage: aSourceLanguage
sourceLanguage := aSourceLanguage.
        sourceLanguage mooseModel: self

So, that we don't have to remember to add manually the source language to the model.

Is it ok to do this change?

usman