mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
Basically it tries to do the following in order: Resolve types, Declare symbols, Create constant initializers, Apply initializers, Generate functions bodies. ClassInfo is now has the most useful(biased?) members working. Probably other stuf...
10 lines
272 B
C
10 lines
272 B
C
#ifndef LLVMDC_GEN_TYPEINF_H
|
|
#define LLVMDC_GEN_TYPEINF_H
|
|
|
|
void DtoResolveTypeInfo(TypeInfoDeclaration* tid);
|
|
void DtoDeclareTypeInfo(TypeInfoDeclaration* tid);
|
|
void DtoConstInitTypeInfo(TypeInfoDeclaration* tid);
|
|
void DtoDefineTypeInfo(TypeInfoDeclaration* tid);
|
|
|
|
#endif
|