-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcursorkind.go
663 lines (565 loc) · 19.3 KB
/
cursorkind.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
package clang
// #include <stdlib.h>
// #include "go-clang.h"
import "C"
/**
* \brief Describes the kind of entity that a cursor refers to.
*/
type CursorKind uint32 //FIXME: use uint32? int64?
const (
/**
* \brief A declaration whose specific kind is not exposed via this
* interface.
*
* Unexposed declarations have the same operations as any other kind
* of declaration; one can extract their location information,
* spelling, find their definitions, etc. However, the specific kind
* of the declaration is not reported.
*/
CK_UnexposedDecl CursorKind = C.CXCursor_UnexposedDecl
// A C or C++ struct.
CK_StructDecl = C.CXCursor_StructDecl
// A C or C++ union
CK_UnionDecl = C.CXCursor_UnionDecl
// A C++ class
CK_ClassDecl = C.CXCursor_ClassDecl
// An enumeration
CK_EnumDecl = C.CXCursor_EnumDecl
// A field (in C) or non-static data member (in C++) in a
// struct, union, or C++ class.
CK_FieldDecl = C.CXCursor_FieldDecl
/** \brief An enumerator constant. */
CK_EnumConstantDecl = C.CXCursor_EnumConstantDecl
/** \brief A function. */
CK_FunctionDecl = C.CXCursor_FunctionDecl
/** \brief A variable. */
CK_VarDecl = C.CXCursor_VarDecl
/** \brief A function or method parameter. */
CK_ParmDecl = C.CXCursor_ParmDecl
/** \brief An Objective-C @interface. */
CK_ObjCInterfaceDecl = C.CXCursor_ObjCInterfaceDecl
/** \brief An Objective-C @interface for a category. */
CK_ObjCCategoryDecl = C.CXCursor_ObjCCategoryDecl
/** \brief An Objective-C @protocol declaration. */
CK_ObjCProtocolDecl = C.CXCursor_ObjCProtocolDecl
/** \brief An Objective-C @property declaration. */
CK_ObjCPropertyDecl = C.CXCursor_ObjCPropertyDecl
/** \brief An Objective-C instance variable. */
CK_ObjCIvarDecl = C.CXCursor_ObjCIvarDecl
/** \brief An Objective-C instance method. */
CK_ObjCInstanceMethodDecl = C.CXCursor_ObjCInstanceMethodDecl
/** \brief An Objective-C class method. */
CK_ObjCClassMethodDecl = C.CXCursor_ObjCClassMethodDecl
/** \brief An Objective-C @implementation. */
CK_ObjCImplementationDecl = C.CXCursor_ObjCImplementationDecl
/** \brief An Objective-C @implementation for a category. */
CK_ObjCCategoryImplDecl = C.CXCursor_ObjCCategoryImplDecl
/** \brief A typedef */
CK_TypedefDecl = C.CXCursor_TypedefDecl
/** \brief A C++ class method. */
CK_CXXMethod = C.CXCursor_CXXMethod
/** \brief A C++ namespace. */
CK_Namespace = C.CXCursor_Namespace
/** \brief A linkage specification, e.g. 'extern "C"'. */
CK_LinkageSpec = C.CXCursor_LinkageSpec
/** \brief A C++ constructor. */
CK_Constructor = C.CXCursor_Constructor
/** \brief A C++ destructor. */
CK_Destructor = C.CXCursor_Destructor
/** \brief A C++ conversion function. */
CK_ConversionFunction = C.CXCursor_ConversionFunction
/** \brief A C++ template type parameter. */
CK_TemplateTypeParameter = C.CXCursor_TemplateTypeParameter
/** \brief A C++ non-type template parameter. */
CK_NonTypeTemplateParameter = C.CXCursor_NonTypeTemplateParameter
/** \brief A C++ template template parameter. */
CK_TemplateTemplateParameter = C.CXCursor_TemplateTemplateParameter
/** \brief A C++ function template. */
CK_FunctionTemplate = C.CXCursor_FunctionTemplate
/** \brief A C++ class template. */
CK_ClassTemplate = C.CXCursor_ClassTemplate
/** \brief A C++ class template partial specialization. */
CK_ClassTemplatePartialSpecialization = C.CXCursor_ClassTemplatePartialSpecialization
/** \brief A C++ namespace alias declaration. */
CK_NamespaceAlias = C.CXCursor_NamespaceAlias
/** \brief A C++ using directive. */
CK_UsingDirective = C.CXCursor_UsingDirective
/** \brief A C++ using declaration. */
CK_UsingDeclaration = C.CXCursor_UsingDeclaration
/** \brief A C++ alias declaration */
CK_TypeAliasDecl = C.CXCursor_TypeAliasDecl
/** \brief An Objective-C @synthesize definition. */
CK_ObjCSynthesizeDecl = C.CXCursor_ObjCSynthesizeDecl
/** \brief An Objective-C @dynamic definition. */
CK_ObjCDynamicDecl = C.CXCursor_ObjCDynamicDecl
/** \brief An access specifier. */
CK_CXXAccessSpecifier = C.CXCursor_CXXAccessSpecifier
CK_FirstDecl = C.CXCursor_FirstDecl
CK_LastDecl = C.CXCursor_LastDecl
/* References */
CK_FirstRef = C.CXCursor_FirstRef
CK_ObjCSuperClassRef = C.CXCursor_ObjCSuperClassRef
CK_ObjCProtocolRef = C.CXCursor_ObjCProtocolRef
CK_ObjCClassRef = C.CXCursor_ObjCClassRef
/**
* \brief A reference to a type declaration.
*
* A type reference occurs anywhere where a type is named but not
* declared. For example, given:
*
* \code
* typedef unsigned size_type;
* size_type size;
* \endcode
*
* The typedef is a declaration of size_type (CXCursor_TypedefDecl),
* while the type of the variable "size" is referenced. The cursor
* referenced by the type of size is the typedef for size_type.
*/
CK_TypeRef = C.CXCursor_TypeRef
CK_CXXBaseSpecifier = C.CXCursor_CXXBaseSpecifier
/**
* \brief A reference to a class template, function template, template
* template parameter, or class template partial specialization.
*/
CK_TemplateRef = C.CXCursor_TemplateRef
/**
* \brief A reference to a namespace or namespace alias.
*/
CK_NamespaceRef = C.CXCursor_NamespaceRef
/**
* \brief A reference to a member of a struct, union, or class that occurs in
* some non-expression context, e.g., a designated initializer.
*/
CK_MemberRef = C.CXCursor_MemberRef
/**
* \brief A reference to a labeled statement.
*
* This cursor kind is used to describe the jump to "start_over" in the
* goto statement in the following example:
*
* \code
* start_over:
* ++counter;
*
* goto start_over;
* \endcode
*
* A label reference cursor refers to a label statement.
*/
CK_LabelRef = C.CXCursor_LabelRef
/**
* \brief A reference to a set of overloaded functions or function templates
* that has not yet been resolved to a specific function or function template.
*
* An overloaded declaration reference cursor occurs in C++ templates where
* a dependent name refers to a function. For example:
*
* \code
* template<typename T> void swap(T&, T&);
*
* struct X { ... };
* void swap(X&, X&);
*
* template<typename T>
* void reverse(T* first, T* last) {
* while (first < last - 1) {
* swap(*first, *--last);
* ++first;
* }
* }
*
* struct Y { };
* void swap(Y&, Y&);
* \endcode
*
* Here, the identifier "swap" is associated with an overloaded declaration
* reference. In the template definition, "swap" refers to either of the two
* "swap" functions declared above, so both results will be available. At
* instantiation time, "swap" may also refer to other functions found via
* argument-dependent lookup (e.g., the "swap" function at the end of the
* example).
*
* The functions \c clang_getNumOverloadedDecls() and
* \c clang_getOverloadedDecl() can be used to retrieve the definitions
* referenced by this cursor.
*/
CK_OverloadedDeclRef = C.CXCursor_OverloadedDeclRef
CK_LastRef = C.CXCursor_LastRef
/* Error conditions */
CK_FirstInvalid = C.CXCursor_FirstInvalid
CK_InvalidFile = C.CXCursor_InvalidFile
CK_NoDeclFound = C.CXCursor_NoDeclFound
CK_NotImplemented = C.CXCursor_NotImplemented
CK_InvalidCode = C.CXCursor_InvalidCode
CK_LastInvalid = C.CXCursor_LastInvalid
/* Expressions */
CK_FirstExpr = C.CXCursor_FirstExpr
/**
* \brief An expression whose specific kind is not exposed via this
* interface.
*
* Unexposed expressions have the same operations as any other kind
* of expression; one can extract their location information,
* spelling, children, etc. However, the specific kind of the
* expression is not reported.
*/
CK_UnexposedExpr = C.CXCursor_UnexposedExpr
/**
* \brief An expression that refers to some value declaration, such
* as a function, varible, or enumerator.
*/
CK_DeclRefExpr = C.CXCursor_DeclRefExpr
/**
* \brief An expression that refers to a member of a struct, union,
* class, Objective-C class, etc.
*/
CK_MemberRefExpr = C.CXCursor_MemberRefExpr
/** \brief An expression that calls a function. */
CK_CallExpr = C.CXCursor_CallExpr
/** \brief An expression that sends a message to an Objective-C
object or class. */
CK_ObjCMessageExpr = C.CXCursor_ObjCMessageExpr
/** \brief An expression that represents a block literal. */
CK_BlockExpr = C.CXCursor_BlockExpr
/** \brief An integer literal.
*/
CK_IntegerLiteral = C.CXCursor_IntegerLiteral
/** \brief A floating point number literal.
*/
CK_FloatingLiteral = C.CXCursor_FloatingLiteral
/** \brief An imaginary number literal.
*/
CK_ImaginaryLiteral = C.CXCursor_ImaginaryLiteral
/** \brief A string literal.
*/
CK_StringLiteral = C.CXCursor_StringLiteral
/** \brief A character literal.
*/
CK_CharacterLiteral = C.CXCursor_CharacterLiteral
/** \brief A parenthesized expression, e.g. "(1)".
*
* This AST node is only formed if full location information is requested.
*/
CK_ParenExpr = C.CXCursor_ParenExpr
/** \brief This represents the unary-expression's (except sizeof and
* alignof).
*/
CK_UnaryOperator = C.CXCursor_UnaryOperator
/** \brief [C99 6.5.2.1] Array Subscripting.
*/
CK_ArraySubscriptExpr = C.CXCursor_ArraySubscriptExpr
/** \brief A builtin binary operation expression such as "x + y" or
* "x <= y".
*/
CK_BinaryOperator = C.CXCursor_BinaryOperator
/** \brief Compound assignment such as "+=".
*/
CK_CompoundAssignOperator = C.CXCursor_CompoundAssignOperator
/** \brief The ?: ternary operator.
*/
CK_ConditionalOperator = C.CXCursor_ConditionalOperator
/** \brief An explicit cast in C (C99 6.5.4) or a C-style cast in C++
* (C++ [expr.cast]), which uses the syntax (Type)expr.
*
* For example: (int)f.
*/
CK_CStyleCastExpr = C.CXCursor_CStyleCastExpr
/** \brief [C99 6.5.2.5]
*/
CK_CompoundLiteralExpr = C.CXCursor_CompoundLiteralExpr
/** \brief Describes an C or C++ initializer list.
*/
CK_InitListExpr = C.CXCursor_InitListExpr
/** \brief The GNU address of label extension, representing &&label.
*/
CK_AddrLabelExpr = C.CXCursor_AddrLabelExpr
/** \brief This is the GNU Statement Expression extension: ({int X=4; X;})
*/
CK_StmtExpr = C.CXCursor_StmtExpr
/** \brief Represents a C1X generic selection.
*/
CK_GenericSelectionExpr = C.CXCursor_GenericSelectionExpr
/** \brief Implements the GNU __null extension, which is a name for a null
* pointer constant that has integral type (e.g., int or long) and is the same
* size and alignment as a pointer.
*
* The __null extension is typically only used by system headers, which define
* NULL as __null in C++ rather than using 0 (which is an integer that may not
* match the size of a pointer).
*/
CK_GNUNullExpr = C.CXCursor_GNUNullExpr
/** \brief C++'s static_cast<> expression.
*/
CK_CXXStaticCastExpr = C.CXCursor_CXXStaticCastExpr
/** \brief C++'s dynamic_cast<> expression.
*/
CK_CXXDynamicCastExpr = C.CXCursor_CXXDynamicCastExpr
/** \brief C++'s reinterpret_cast<> expression.
*/
CK_CXXReinterpretCastExpr = C.CXCursor_CXXReinterpretCastExpr
/** \brief C++'s const_cast<> expression.
*/
CK_CXXConstCastExpr = C.CXCursor_CXXConstCastExpr
/** \brief Represents an explicit C++ type conversion that uses "functional"
* notion (C++ [expr.type.conv]).
*
* Example:
* \code
* x = int(0.5);
* \endcode
*/
CK_CXXFunctionalCastExpr = C.CXCursor_CXXFunctionalCastExpr
/** \brief A C++ typeid expression (C++ [expr.typeid]).
*/
CK_CXXTypeidExpr = C.CXCursor_CXXTypeidExpr
/** \brief [C++ 2.13.5] C++ Boolean Literal.
*/
CK_CXXBoolLiteralExpr = C.CXCursor_CXXBoolLiteralExpr
/** \brief [C++0x 2.14.7] C++ Pointer Literal.
*/
CK_CXXNullPtrLiteralExpr = C.CXCursor_CXXNullPtrLiteralExpr
/** \brief Represents the "this" expression in C++
*/
CK_CXXThisExpr = C.CXCursor_CXXThisExpr
/** \brief [C++ 15] C++ Throw Expression.
*
* This handles 'throw' and 'throw' assignment-expression. When
* assignment-expression isn't present, Op will be null.
*/
CK_CXXThrowExpr = C.CXCursor_CXXThrowExpr
/** \brief A new expression for memory allocation and constructor calls, e.g:
* "new CXXNewExpr(foo)".
*/
CK_CXXNewExpr = C.CXCursor_CXXNewExpr
/** \brief A delete expression for memory deallocation and destructor calls,
* e.g. "delete[] pArray".
*/
CK_CXXDeleteExpr = C.CXCursor_CXXDeleteExpr
/** \brief A unary expression.
*/
CK_UnaryExpr = C.CXCursor_UnaryExpr
/** \brief ObjCStringLiteral, used for Objective-C string literals i.e. "foo".
*/
CK_ObjCStringLiteral = C.CXCursor_ObjCStringLiteral
/** \brief ObjCEncodeExpr, used for in Objective-C.
*/
CK_ObjCEncodeExpr = C.CXCursor_ObjCEncodeExpr
/** \brief ObjCSelectorExpr used for in Objective-C.
*/
CK_ObjCSelectorExpr = C.CXCursor_ObjCSelectorExpr
/** \brief Objective-C's protocol expression.
*/
CK_ObjCProtocolExpr = C.CXCursor_ObjCProtocolExpr
/** \brief An Objective-C "bridged" cast expression, which casts between
* Objective-C pointers and C pointers, transferring ownership in the process.
*
* \code
* NSString *str = (__bridge_transfer NSString *)CFCreateString();
* \endcode
*/
CK_ObjCBridgedCastExpr = C.CXCursor_ObjCBridgedCastExpr
/** \brief Represents a C++0x pack expansion that produces a sequence of
* expressions.
*
* A pack expansion expression contains a pattern (which itself is an
* expression) followed by an ellipsis. For example:
*
* \code
* template<typename F, typename ...Types>
* void forward(F f, Types &&...args) {
* f(static_cast<Types&&>(args)...);
* }
* \endcode
*/
CK_PackExpansionExpr = C.CXCursor_PackExpansionExpr
/** \brief Represents an expression that computes the length of a parameter
* pack.
*
* \code
* template<typename ...Types>
* struct count {
* static const unsigned value = sizeof...(Types);
* };
* \endcode
*/
CK_SizeOfPackExpr = C.CXCursor_SizeOfPackExpr
/** \brief Represents the "self" expression in a ObjC method.
*/
CK_ObjCSelfExpr = C.CXCursor_ObjCSelfExpr
CK_LastExpr = C.CXCursor_LastExpr
/* Statements */
CK_FirstStmt = C.CXCursor_FirstStmt
/**
* \brief A statement whose specific kind is not exposed via this
* interface.
*
* Unexposed statements have the same operations as any other kind of
* statement; one can extract their location information, spelling,
* children, etc. However, the specific kind of the statement is not
* reported.
*/
CK_UnexposedStmt = C.CXCursor_UnexposedStmt
/** \brief A labelled statement in a function.
*
* This cursor kind is used to describe the "start_over:" label statement in
* the following example:
*
* \code
* start_over:
* ++counter;
* \endcode
*
*/
CK_LabelStmt = C.CXCursor_LabelStmt
/** \brief A group of statements like { stmt stmt }.
*
* This cursor kind is used to describe compound statements, e.g. function
* bodies.
*/
CK_CompoundStmt = C.CXCursor_CompoundStmt
/** \brief A case statment.
*/
CK_CaseStmt = C.CXCursor_CaseStmt
/** \brief A default statement.
*/
CK_DefaultStmt = C.CXCursor_DefaultStmt
/** \brief An if statement
*/
CK_IfStmt = C.CXCursor_IfStmt
/** \brief A switch statement.
*/
CK_SwitchStmt = C.CXCursor_SwitchStmt
/** \brief A while statement.
*/
CK_WhileStmt = C.CXCursor_WhileStmt
/** \brief A do statement.
*/
CK_DoStmt = C.CXCursor_DoStmt
/** \brief A for statement.
*/
CK_ForStmt = C.CXCursor_ForStmt
/** \brief A goto statement.
*/
CK_GotoStmt = C.CXCursor_GotoStmt
/** \brief An indirect goto statement.
*/
CK_IndirectGotoStmt = C.CXCursor_IndirectGotoStmt
/** \brief A continue statement.
*/
CK_ContinueStmt = C.CXCursor_ContinueStmt
/** \brief A break statement.
*/
CK_BreakStmt = C.CXCursor_BreakStmt
/** \brief A return statement.
*/
CK_ReturnStmt = C.CXCursor_ReturnStmt
/** \brief A GCC inline assembly statement extension.
*/
CK_GCCAsmStmt = C.CXCursor_GCCAsmStmt
CK_AsmStmt = CK_GCCAsmStmt
/** \brief Objective-C's overall @try-@catc-@finall statement.
*/
CK_ObjCAtTryStmt = C.CXCursor_ObjCAtTryStmt
/** \brief Objective-C's @catch statement.
*/
CK_ObjCAtCatchStmt = C.CXCursor_ObjCAtCatchStmt
/** \brief Objective-C's @finally statement.
*/
CK_ObjCAtFinallyStmt = C.CXCursor_ObjCAtFinallyStmt
/** \brief Objective-C's @throw statement.
*/
CK_ObjCAtThrowStmt = C.CXCursor_ObjCAtThrowStmt
/** \brief Objective-C's @synchronized statement.
*/
CK_ObjCAtSynchronizedStmt = C.CXCursor_ObjCAtSynchronizedStmt
/** \brief Objective-C's autorelease pool statement.
*/
CK_ObjCAutoreleasePoolStmt = C.CXCursor_ObjCAutoreleasePoolStmt
/** \brief Objective-C's collection statement.
*/
CK_ObjCForCollectionStmt = C.CXCursor_ObjCForCollectionStmt
/** \brief C++'s catch statement.
*/
CK_CXXCatchStmt = C.CXCursor_CXXCatchStmt
/** \brief C++'s try statement.
*/
CK_CXXTryStmt = C.CXCursor_CXXTryStmt
/** \brief C++'s for (* : *) statement.
*/
CK_CXXForRangeStmt = C.CXCursor_CXXForRangeStmt
/** \brief Windows Structured Exception Handling's try statement.
*/
CK_SEHTryStmt = C.CXCursor_SEHTryStmt
/** \brief Windows Structured Exception Handling's except statement.
*/
CK_SEHExceptStmt = C.CXCursor_SEHExceptStmt
/** \brief Windows Structured Exception Handling's finally statement.
*/
CK_SEHFinallyStmt = C.CXCursor_SEHFinallyStmt
/** \brief A MS inline assembly statement extension.
*/
CK_MSAsmStmt = C.CXCursor_MSAsmStmt
/** \brief The null satement ";": C99 6.8.3p3.
*
* This cursor kind is used to describe the null statement.
*/
CK_NullStmt = C.CXCursor_NullStmt
/** \brief Adaptor class for mixing declarations with statements and
* expressions.
*/
CK_DeclStmt = C.CXCursor_DeclStmt
/** \brief OpenMP parallel directive.
*/
CK_OMPParallelDirective = C.CXCursor_OMPParallelDirective
CK_LastStmt = C.CXCursor_LastStmt
/**
* \brief Cursor that represents the translation unit itself.
*
* The translation unit cursor exists primarily to act as the root
* cursor for traversing the contents of a translation unit.
*/
CK_TranslationUnit = C.CXCursor_TranslationUnit
/* Attributes */
CK_FirstAttr = C.CXCursor_FirstAttr
/**
* \brief An attribute whose specific kind is not exposed via this
* interface.
*/
CK_UnexposedAttr = C.CXCursor_UnexposedAttr
CK_IBActionAttr = C.CXCursor_IBActionAttr
CK_IBOutletAttr = C.CXCursor_IBOutletAttr
CK_IBOutletCollectionAttr = C.CXCursor_IBOutletCollectionAttr
CK_CXXFinalAttr = C.CXCursor_CXXFinalAttr
CK_CXXOverrideAttr = C.CXCursor_CXXOverrideAttr
CK_AnnotateAttr = C.CXCursor_AnnotateAttr
CK_LastAttr = C.CXCursor_LastAttr
/* Preprocessing */
CK_PreprocessingDirective = C.CXCursor_PreprocessingDirective
CK_MacroDefinition = C.CXCursor_MacroDefinition
CK_MacroExpansion = C.CXCursor_MacroExpansion
CK_MacroInstantiation = C.CXCursor_MacroInstantiation
CK_InclusionDirective = C.CXCursor_InclusionDirective
CK_FirstPreprocessing = C.CXCursor_FirstPreprocessing
CK_LastPreprocessing = C.CXCursor_LastPreprocessing
/* Extra Declarations */
/**
* \brief A module import declaration.
*/
CK_ModuleImportDecl = C.CXCursor_ModuleImportDecl
CK_FirstExtraDecl = C.CXCursor_FirstExtraDecl
CK_LastExtraDecl = C.CXCursor_LastExtraDecl
)
func (c CursorKind) to_c() uint32 {
return uint32(c)
}
func (c CursorKind) String() string {
return c.Spelling()
}
/* for debug/testing */
func (c CursorKind) Spelling() string {
cstr := cxstring{C.clang_getCursorKindSpelling(c.to_c())}
defer cstr.Dispose()
return cstr.String()
}
// EOF