public static SimplTypesScope Get()
        {
            SimplTypesScope semanticActionScope = SemanticOperationTranslationScope.Get();
            SimplTypesScope conditionScope      = SimplTypesScope.Get("condition_scope", conditionClasses);
            SimplTypesScope nestedFieldTypes    = NestedMetaMetadataFieldTypesScope.Get();
            SimplTypesScope mmdScope            = SimplTypesScope.Get("meta_metadata", MetaMetadataFieldTranslationScope.Get(),
                                                                      translations);

            mmdScope.AddTranslations(semanticActionScope);
            mmdScope.AddTranslations(conditionScope);
            mmdScope.AddTranslations(nestedFieldTypes);

            return(mmdScope);
        }