Exemplo n.º 1
0
 public static LLVMTypeRef StringSliceReferenceType(this ContextWrapper context) => context.StructType(
     new LLVMTypeRef[]
 {
     context.BytePointerType(),
     context.Int32Type
 },
     false);
Exemplo n.º 2
0
 public static LLVMTypeRef StringSplitIteratorType(this ContextWrapper context) => context.StructType(
     new LLVMTypeRef[]
 {
     context.StringSliceReferenceType(),
     context.BytePointerType()
 });
Exemplo n.º 3
0
 public static LLVMTypeRef StringType(this ContextWrapper context) => context.StructType(
     new LLVMTypeRef[]
 {
     context.BytePointerType(),
     context.Int32Type
 });