Ejemplo n.º 1
0
 /// <summary>
 /// Converts a native parser AST to a managed AST.
 /// </summary>
 public static AST.ASTContext ConvertASTContext(ASTContext context)
 {
     var converter = new ASTConverter(context);
     return converter.Convert();
 }
Ejemplo n.º 2
0
 public ClangParser(ASTContext context)
 {
     ASTContext = context;
 }
Ejemplo n.º 3
0
 public ClangParser()
 {
     ASTContext = new ASTContext();
 }
Ejemplo n.º 4
0
        /// <summary>
        /// Converts a native parser AST to a managed AST.
        /// </summary>
        static public AST.ASTContext ConvertASTContext(ASTContext context)
        {
            var converter = new ASTConverter(context);

            return(converter.Convert());
        }
Ejemplo n.º 5
0
 public ClangParser(ASTContext context)
 {
     ASTContext = context;
 }
Ejemplo n.º 6
0
 public ClangParser()
 {
     ASTContext = new ASTContext();
 }