@@ -71,8 +71,6 @@ public struct sourcekitd_api_keys {
71
71
public let moduleInterfaceName : sourcekitd_api_uid_t
72
72
/// `key.hash`
73
73
public let hash : sourcekitd_api_uid_t
74
- /// `key.compilerargs`
75
- public let compilerArgs : sourcekitd_api_uid_t
76
74
/// `key.severity`
77
75
public let severity : sourcekitd_api_uid_t
78
76
/// `key.offset`
@@ -81,8 +79,6 @@ public struct sourcekitd_api_keys {
81
79
public let length : sourcekitd_api_uid_t
82
80
/// `key.sourcefile`
83
81
public let sourceFile : sourcekitd_api_uid_t
84
- /// `key.sourcetext`
85
- public let sourceText : sourcekitd_api_uid_t
86
82
/// `key.primary_file`
87
83
public let primaryFile : sourcekitd_api_uid_t
88
84
/// `key.enablesyntaxmap`
@@ -215,6 +211,8 @@ public struct sourcekitd_api_keys {
215
211
public let deprecated : sourcekitd_api_uid_t
216
212
/// `key.obsoleted`
217
213
public let obsoleted : sourcekitd_api_uid_t
214
+ /// `key.cancel_builds`
215
+ public let cancelBuilds : sourcekitd_api_uid_t
218
216
/// `key.removecache`
219
217
public let removeCache : sourcekitd_api_uid_t
220
218
/// `key.typeusr`
@@ -415,6 +413,10 @@ public struct sourcekitd_api_keys {
415
413
public let ignoreStdlib : sourcekitd_api_uid_t
416
414
/// `key.disable_implicit_modules`
417
415
public let disableImplicitModules : sourcekitd_api_uid_t
416
+ /// `key.compilerargs`
417
+ public let compilerArgs : sourcekitd_api_uid_t
418
+ /// `key.sourcetext`
419
+ public let sourceText : sourcekitd_api_uid_t
418
420
/// `key.codecomplete.sort.byname`
419
421
public let sortByName : sourcekitd_api_uid_t
420
422
/// `key.codecomplete.sort.useimportdepth`
@@ -495,12 +497,10 @@ public struct sourcekitd_api_keys {
495
497
filePath = api. uid_get_from_cstr ( " key.filepath " ) !
496
498
moduleInterfaceName = api. uid_get_from_cstr ( " key.module_interface_name " ) !
497
499
hash = api. uid_get_from_cstr ( " key.hash " ) !
498
- compilerArgs = api. uid_get_from_cstr ( " key.compilerargs " ) !
499
500
severity = api. uid_get_from_cstr ( " key.severity " ) !
500
501
offset = api. uid_get_from_cstr ( " key.offset " ) !
501
502
length = api. uid_get_from_cstr ( " key.length " ) !
502
503
sourceFile = api. uid_get_from_cstr ( " key.sourcefile " ) !
503
- sourceText = api. uid_get_from_cstr ( " key.sourcetext " ) !
504
504
primaryFile = api. uid_get_from_cstr ( " key.primary_file " ) !
505
505
enableSyntaxMap = api. uid_get_from_cstr ( " key.enablesyntaxmap " ) !
506
506
enableStructure = api. uid_get_from_cstr ( " key.enablesubstructure " ) !
@@ -567,6 +567,7 @@ public struct sourcekitd_api_keys {
567
567
introduced = api. uid_get_from_cstr ( " key.introduced " ) !
568
568
deprecated = api. uid_get_from_cstr ( " key.deprecated " ) !
569
569
obsoleted = api. uid_get_from_cstr ( " key.obsoleted " ) !
570
+ cancelBuilds = api. uid_get_from_cstr ( " key.cancel_builds " ) !
570
571
removeCache = api. uid_get_from_cstr ( " key.removecache " ) !
571
572
typeUsr = api. uid_get_from_cstr ( " key.typeusr " ) !
572
573
containerTypeUsr = api. uid_get_from_cstr ( " key.containertypeusr " ) !
@@ -667,6 +668,8 @@ public struct sourcekitd_api_keys {
667
668
includeSystemModules = api. uid_get_from_cstr ( " key.include_system_modules " ) !
668
669
ignoreStdlib = api. uid_get_from_cstr ( " key.ignore_stdlib " ) !
669
670
disableImplicitModules = api. uid_get_from_cstr ( " key.disable_implicit_modules " ) !
671
+ compilerArgs = api. uid_get_from_cstr ( " key.compilerargs " ) !
672
+ sourceText = api. uid_get_from_cstr ( " key.sourcetext " ) !
670
673
sortByName = api. uid_get_from_cstr ( " key.codecomplete.sort.byname " ) !
671
674
useImportDepth = api. uid_get_from_cstr ( " key.codecomplete.sort.useimportdepth " ) !
672
675
groupOverloads = api. uid_get_from_cstr ( " key.codecomplete.group.overloads " ) !
0 commit comments