Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typedef enums in CodeCompletionSwiftInterop.h #1927

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions Sources/Csourcekitd/include/CodeCompletionSwiftInterop.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ typedef void *swiftide_api_connection_t;
/// may be more expensive to compute.
typedef void *swiftide_api_completion_item_t;

enum swiftide_api_completion_kind_t: uint32_t {
typedef enum swiftide_api_completion_kind_t: uint32_t {
SWIFTIDE_COMPLETION_KIND_NONE = 0,
SWIFTIDE_COMPLETION_KIND_IMPORT = 1,
SWIFTIDE_COMPLETION_KIND_UNRESOLVEDMEMBER = 2,
Expand Down Expand Up @@ -69,17 +69,17 @@ enum swiftide_api_completion_kind_t: uint32_t {
SWIFTIDE_COMPLETION_KIND_TYPESIMPLEORCOMPOSITION = 41,
SWIFTIDE_COMPLETION_KIND_TYPEPOSSIBLEFUNCTIONPARAMBEGINNING = 42,
SWIFTIDE_COMPLETION_KIND_TYPEATTRINHERITANCEBEGINNING = 43,
};
} swiftide_api_completion_kind_t;

enum swiftide_api_completion_item_kind_t: uint32_t {
typedef enum swiftide_api_completion_item_kind_t: uint32_t {
SWIFTIDE_COMPLETION_ITEM_KIND_DECLARATION = 0,
SWIFTIDE_COMPLETION_ITEM_KIND_KEYWORD = 1,
SWIFTIDE_COMPLETION_ITEM_KIND_PATTERN = 2,
SWIFTIDE_COMPLETION_ITEM_KIND_LITERAL = 3,
SWIFTIDE_COMPLETION_ITEM_KIND_BUILTINOPERATOR = 4,
};
} swiftide_api_completion_item_kind_t;

enum swiftide_api_completion_item_decl_kind_t: uint32_t {
typedef enum swiftide_api_completion_item_decl_kind_t: uint32_t {
SWIFTIDE_COMPLETION_ITEM_DECL_KIND_MODULE = 0,
SWIFTIDE_COMPLETION_ITEM_DECL_KIND_CLASS = 1,
SWIFTIDE_COMPLETION_ITEM_DECL_KIND_STRUCT = 2,
Expand All @@ -105,18 +105,18 @@ enum swiftide_api_completion_item_decl_kind_t: uint32_t {
SWIFTIDE_COMPLETION_ITEM_DECL_KIND_PRECEDENCEGROUP = 22,
SWIFTIDE_COMPLETION_ITEM_DECL_KIND_ACTOR = 23,
SWIFTIDE_COMPLETION_ITEM_DECL_KIND_MACRO = 24,
};
} swiftide_api_completion_item_decl_kind_t;

enum swiftide_api_completion_type_relation_t: uint32_t {
typedef enum swiftide_api_completion_type_relation_t: uint32_t {
SWIFTIDE_COMPLETION_TYPE_RELATION_NOTAPPLICABLE = 0,
SWIFTIDE_COMPLETION_TYPE_RELATION_UNKNOWN = 1,
SWIFTIDE_COMPLETION_TYPE_RELATION_UNRELATED = 2,
SWIFTIDE_COMPLETION_TYPE_RELATION_INVALID = 3,
SWIFTIDE_COMPLETION_TYPE_RELATION_CONVERTIBLE = 4,
SWIFTIDE_COMPLETION_TYPE_RELATION_IDENTICAL = 5,
};
} swiftide_api_completion_type_relation_t;

enum swiftide_api_completion_semantic_context_t: uint32_t {
typedef enum swiftide_api_completion_semantic_context_t: uint32_t {
SWIFTIDE_COMPLETION_SEMANTIC_CONTEXT_NONE = 0,
/* obsoleted */SWIFTIDE_COMPLETION_SEMANTIC_CONTEXT_EXPRESSIONSPECIFIC = 1,
SWIFTIDE_COMPLETION_SEMANTIC_CONTEXT_LOCAL = 2,
Expand All @@ -125,19 +125,19 @@ enum swiftide_api_completion_semantic_context_t: uint32_t {
SWIFTIDE_COMPLETION_SEMANTIC_CONTEXT_OUTSIDENOMINAL = 5,
SWIFTIDE_COMPLETION_SEMANTIC_CONTEXT_CURRENTMODULE = 6,
SWIFTIDE_COMPLETION_SEMANTIC_CONTEXT_OTHERMODULE = 7,
};
} swiftide_api_completion_semantic_context_t;

enum swiftide_api_completion_flair_t: uint32_t {
typedef enum swiftide_api_completion_flair_t: uint32_t {
SWIFTIDE_COMPLETION_FLAIR_EXPRESSIONSPECIFIC = 1 << 0,
SWIFTIDE_COMPLETION_FLAIR_SUPERCHAIN = 1 << 1,
SWIFTIDE_COMPLETION_FLAIR_ARGUMENTLABELS = 1 << 2,
SWIFTIDE_COMPLETION_FLAIR_COMMONKEYWORDATCURRENTPOSITION = 1 << 3,
SWIFTIDE_COMPLETION_FLAIR_RAREKEYWORDATCURRENTPOSITION = 1 << 4,
SWIFTIDE_COMPLETION_FLAIR_RARETYPEATCURRENTPOSITION = 1 << 5,
SWIFTIDE_COMPLETION_FLAIR_EXPRESSIONATNONSCRIPTORMAINFILESCOPE = 1 << 6,
};
} swiftide_api_completion_flair_t;

enum swiftide_api_completion_not_recommended_reason_t: uint32_t {
typedef enum swiftide_api_completion_not_recommended_reason_t: uint32_t {
SWIFTIDE_COMPLETION_NOT_RECOMMENDED_NONE = 0,
SWIFTIDE_COMPLETION_NOT_RECOMMENDED_REDUNDANT_IMPORT = 1,
SWIFTIDE_COMPLETION_NOT_RECOMMENDED_DEPRECATED = 2,
Expand All @@ -147,15 +147,15 @@ enum swiftide_api_completion_not_recommended_reason_t: uint32_t {
SWIFTIDE_COMPLETION_NOT_RECOMMENDED_REDUNDANT_IMPORT_INDIRECT = 6,
SWIFTIDE_COMPLETION_NOT_RECOMMENDED_SOFTDEPRECATED = 7,
SWIFTIDE_COMPLETION_NOT_RECOMMENDED_NON_ASYNC_ALTERNATIVE_USED_IN_ASYNC_CONTEXT = 8,
};
} swiftide_api_completion_not_recommended_reason_t;

enum swiftide_api_completion_diagnostic_severity_t: uint32_t {
typedef enum swiftide_api_completion_diagnostic_severity_t: uint32_t {
SWIFTIDE_COMPLETION_DIAGNOSTIC_SEVERITY_NONE = 0,
SWIFTIDE_COMPLETION_DIAGNOSTIC_SEVERITY_ERROR = 1,
SWIFTIDE_COMPLETION_DIAGNOSTIC_SEVERITY_WARNING = 2,
SWIFTIDE_COMPLETION_DIAGNOSTIC_SEVERITY_REMARK = 3,
SWIFTIDE_COMPLETION_DIAGNOSTIC_SEVERITY_NOTE = 4,
};
} swiftide_api_completion_diagnostic_severity_t;

typedef void *swiftide_api_completion_request_t;

Expand Down Expand Up @@ -278,7 +278,7 @@ typedef struct {
uint64_t index
);

enum swiftide_api_completion_kind_t (*_Nonnull completion_result_get_kind)(
swiftide_api_completion_kind_t (*_Nonnull completion_result_get_kind)(
_Null_unspecified swiftide_api_completion_response_t
);

Expand Down Expand Up @@ -361,7 +361,7 @@ typedef struct {
void (*_Nonnull completion_item_get_diagnostic)(
_Null_unspecified swiftide_api_completion_response_t,
_Null_unspecified swiftide_api_completion_item_t,
void (^_Null_unspecified handler)(enum swiftide_api_completion_diagnostic_severity_t, const char *_Null_unspecified)
void (^_Null_unspecified handler)(swiftide_api_completion_diagnostic_severity_t, const char *_Null_unspecified)
);

bool (*_Nonnull completion_item_is_system)(
Expand Down