Exemple #1
0
        public unsafe TypeAlias(DeclarationContext owningDeclarationContext, CppSharp.Parser.AST.TypeAlias typeAlias) : base(typeAlias)
        {
            this.OwningDeclarationContext = owningDeclarationContext;
            this.typeAlias = typeAlias;

            this.OwningDeclarationContext.AssertNotNull();
            this.typeAlias.AssertNotNullAndOfType <CppSharp.Parser.AST.TypeAlias>();
        }
Exemple #2
0
 public unsafe TypeAlias(CppSharp.Parser.AST.TypeAlias typeAlias) : base(typeAlias)
 {
     this.typeAlias = typeAlias;
     this.typeAlias.AssertNotNullAndOfType <CppSharp.Parser.AST.TypeAlias>();
 }