private static void ProcessTypeEntity( AST ast, NativeType type, CXType cxType, TypeVisitContext context) { type.IsConst = ClangTraits.IsConst(cxType); if (ClangTraits.IsBuiltInType(cxType)) { type.SetBuiltin(ClangTraits.ToBasicType(cxType)); } else { CXCursor cursor = clang.getTypeDeclaration(cxType); CXType theType = clang.getCursorType(cursor); string removeQualifierName = clang.getTypeSpelling(theType).ToString(); if (ClangTraits.IsEnum(cxType)) { type.SetEnum(ast.GetEnum(removeQualifierName)); } else if (ClangTraits.IsFunction(cxType)) { type.SetFunction(GetFunctionProto(ast, cxType, context)); } else if (ClangTraits.IsUserDefiendType(cxType)) { NativeClass nativeClass = ast.GetClass(removeQualifierName); // if native class is parsed already, the native class is a full specialization // or the native class is a instantiation of a template or partial specialization if (!nativeClass.IsClassEntity && !nativeClass.Parsed) { nativeClass.Parsed = true; if (TemplateHelper.VisitTemplate(cursor, nativeClass, ast)) { TemplateHelper.VisitTemplateParameter(cursor, theType, nativeClass, ast, context); } } type.SetClass(nativeClass); } } }
private static void ProcessReferencePointer(AST ast, NativeType type, CXType cxType, TypeVisitContext context) { Debug.Assert(type.TypeKind == BasicType.Unknown); type.IsConst = ClangTraits.IsConst(cxType); CXType pointeeType = clang.getPointeeType(cxType); NativeType nativeType = GetNativeType(ast, pointeeType, context); if (ClangTraits.IsLValueReference(cxType)) { type.SetTypeLValRef(nativeType); } else if (ClangTraits.IsRValueReference(cxType)) { type.SetTypeRValRef(nativeType); } else if (ClangTraits.IsPointer(cxType)) { type.SetPointer(nativeType); } Debug.Assert(type.TypeKind != BasicType.Unknown); }