comparison dmd/TypeInfoAssociativeArrayDeclaration.d @ 96:acd69f84627e

further work
author Trass3r
date Tue, 31 Aug 2010 02:12:15 +0200
parents ef02e2e203c2
children e28b18c23469
comparison
equal deleted inserted replaced
95:ae5b11064a9a 96:acd69f84627e
29 tc.next.getTypeInfo(null); 29 tc.next.getTypeInfo(null);
30 dtxoff(pdt, tc.next.vtinfo.toSymbol(), 0, TYnptr); // TypeInfo for array of type 30 dtxoff(pdt, tc.next.vtinfo.toSymbol(), 0, TYnptr); // TypeInfo for array of type
31 31
32 tc.index.getTypeInfo(null); 32 tc.index.getTypeInfo(null);
33 dtxoff(pdt, tc.index.vtinfo.toSymbol(), 0, TYnptr); // TypeInfo for array of type 33 dtxoff(pdt, tc.index.vtinfo.toSymbol(), 0, TYnptr); // TypeInfo for array of type
34
35 tc.getImpl().type.getTypeInfo(null);
36 dtxoff(pdt, tc.getImpl().type.vtinfo.toSymbol(), 0, TYnptr); // impl
34 } 37 }
35 } 38 }
36 39