public static void PopulateWithFrameworkSymbols(HoistedIdentifierMap globalIdentifierMap)
        {
            Debug.Assert(typeIdentifierMap != null);
            Debug.Assert(frameworkVersion != null);

            PopulateWithFunctions(globalIdentifierMap, typeIdentifierMap, frameworkVersion);
            PopulateWithConstants(globalIdentifierMap, typeIdentifierMap, frameworkVersion);
        }
        public static void PopulateWithFrameworkSymbols(HoistedIdentifierMap globalIdentifierMap, TypeIdentifierMap typeIdentifierMap)
        {
            FrameworkVersion frameworkVersion = FrameworkProvider.GetFrameworkVersion0();

            PopulateWithTypes(typeIdentifierMap, frameworkVersion);
            PopulateWithFunctions(globalIdentifierMap, typeIdentifierMap, frameworkVersion);
            PopulateWithConstants(globalIdentifierMap, typeIdentifierMap, frameworkVersion);
        }