예제 #1
0
        public static void PopulateWithFrameworkTypes(TypeIdentifierMap typeIdentifierMap)
        {
            frameworkVersion = FrameworkProvider.GetFrameworkVersion0();
            FrameworkIntegration.typeIdentifierMap = typeIdentifierMap;

            PopulateWithTypes(typeIdentifierMap, frameworkVersion);
        }
예제 #2
0
 public TypeManager(Compilation compilation, TypeIdentifierMap typeIdentifierMap)
 {
     this.compilation       = compilation;
     this.typeIdentifierMap = typeIdentifierMap;
 }
예제 #3
0
        public static void PopulateWithFrameworkSymbols(HoistedIdentifierMap globalIdentifierMap, TypeIdentifierMap typeIdentifierMap)
        {
            FrameworkVersion frameworkVersion = FrameworkProvider.GetFrameworkVersion0();

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