You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the initialization of a FMMetaMetaModel we are executing an "updateCache" method that does as follow at the level of the FMMetaModel:
updateCache
nameDict := (FM3Constant constants collect: [ :const | const name asString -> const ]) asDictionary.
typeDict := (FM3Constant constants collect: [ :const | const class -> const ]) asDictionary.
self elements do: [ :each | self updateCacheWith: each ].
This couple the FM3 specific meta model to the metaMetaModel.
The text was updated successfully, but these errors were encountered:
During the initialization of a FMMetaMetaModel we are executing an "updateCache" method that does as follow at the level of the FMMetaModel:
updateCache
nameDict := (FM3Constant constants collect: [ :const | const name asString -> const ]) asDictionary.
typeDict := (FM3Constant constants collect: [ :const | const class -> const ]) asDictionary.
self elements do: [ :each | self updateCacheWith: each ].
This couple the FM3 specific meta model to the metaMetaModel.
The text was updated successfully, but these errors were encountered: