@@ -45,39 +45,41 @@ namespace swift {
45
45
// / The name of the fake module used to hold synthesized ClangImporter things.
46
46
static const char MANGLING_MODULE_CLANG_IMPORTER[] = " __C_Synthesized" ;
47
47
48
- // / The name of the Builtin type name for Int
48
+ // / The name of the Builtin type prefix
49
+ static const char BUILTIN_TYPE_NAME_PREFIX[] = " Builtin." ;
50
+ // / The name of the Builtin type for Int
49
51
static const char BUILTIN_TYPE_NAME_INT[] = " Builtin.Int" ;
50
- // / The name of the Builtin type name for Int8
52
+ // / The name of the Builtin type for Int8
51
53
static const char BUILTIN_TYPE_NAME_INT8[] = " Builtin.Int8" ;
52
- // / The name of the Builtin type name for Int16
54
+ // / The name of the Builtin type for Int16
53
55
static const char BUILTIN_TYPE_NAME_INT16[] = " Builtin.Int16" ;
54
- // / The name of the Builtin type name for Int32
56
+ // / The name of the Builtin type for Int32
55
57
static const char BUILTIN_TYPE_NAME_INT32[] = " Builtin.Int32" ;
56
- // / The name of the Builtin type name for Int64
58
+ // / The name of the Builtin type for Int64
57
59
static const char BUILTIN_TYPE_NAME_INT64[] = " Builtin.Int64" ;
58
- // / The name of the Builtin type name for Int128
60
+ // / The name of the Builtin type for Int128
59
61
static const char BUILTIN_TYPE_NAME_INT128[] = " Builtin.Int128" ;
60
- // / The name of the Builtin type name for Int256
62
+ // / The name of the Builtin type for Int256
61
63
static const char BUILTIN_TYPE_NAME_INT256[] = " Builtin.Int256" ;
62
- // / The name of the Builtin type name for Int512
64
+ // / The name of the Builtin type for Int512
63
65
static const char BUILTIN_TYPE_NAME_INT512[] = " Builtin.Int512" ;
64
- // / The name of the Builtin type name for Float
65
- static const char BUILTIN_TYPE_NAME_Float [] = " Builtin.Float" ;
66
- // / The name of the Builtin type name for NativeObject
66
+ // / The name of the Builtin type for Float
67
+ static const char BUILTIN_TYPE_NAME_FLOAT [] = " Builtin.Float" ;
68
+ // / The name of the Builtin type for NativeObject
67
69
static const char BUILTIN_TYPE_NAME_NATIVEOBJECT[] = " Builtin.NativeObject" ;
68
- // / The name of the Builtin type name for BridgeObject
70
+ // / The name of the Builtin type for BridgeObject
69
71
static const char BUILTIN_TYPE_NAME_BRIDGEOBJECT[] = " Builtin.BridgeObject" ;
70
- // / The name of the Builtin type name for RawPointer
72
+ // / The name of the Builtin type for RawPointer
71
73
static const char BUILTIN_TYPE_NAME_RAWPOINTER[] = " Builtin.RawPointer" ;
72
- // / The name of the Builtin type name for UnsafeValueBuffer
74
+ // / The name of the Builtin type for UnsafeValueBuffer
73
75
static const char BUILTIN_TYPE_NAME_UNSAFEVALUEBUFFER[] = " Builtin.UnsafeValueBuffer" ;
74
- // / The name of the Builtin type name for UnknownObject
76
+ // / The name of the Builtin type for UnknownObject
75
77
static const char BUILTIN_TYPE_NAME_UNKNOWNOBJECT[] = " Builtin.UnknownObject" ;
76
- // / The name of the Builtin type name for Vector
78
+ // / The name of the Builtin type for Vector
77
79
static const char BUILTIN_TYPE_NAME_VEC[] = " Builtin.Vec" ;
78
- // / The name of the Builtin type name for SILToken
80
+ // / The name of the Builtin type for SILToken
79
81
static const char BUILTIN_TYPE_NAME_SILTOKEN[] = " Builtin.SILToken" ;
80
- // / The name of the Builtin type name for Word
82
+ // / The name of the Builtin type for Word
81
83
static const char BUILTIN_TYPE_NAME_WORD[] = " Builtin.Word" ;
82
84
} // end namespace swift
83
85
0 commit comments