oak-cpp 0.0.11

C++ systems programming language parser with support for modern C++ features and object-oriented programming.
Documentation
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
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
#![doc = include_str!("readme.md")]
use core::range::Range;

/// Type alias for source span.
type SourceSpan = Range<usize>;

/// C++ language abstract syntax tree root.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CppRoot {
    /// Translation unit.
    pub translation_unit: TranslationUnit,
}

/// Translation unit (top-level structure of a C++ program).
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct TranslationUnit {
    /// List of external declarations.
    pub external_declarations: Vec<ExternalDeclaration>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: Range<usize>,
}

/// External declaration.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ExternalDeclaration {
    /// Function definition.
    FunctionDefinition(FunctionDefinition),
    /// Declaration.
    Declaration(Declaration),
}

/// Function definition.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct FunctionDefinition {
    /// Declaration specifiers.
    pub declaration_specifiers: Vec<DeclarationSpecifier>,
    /// Declarator.
    pub declarator: Declarator,
    /// Compound statement.
    pub compound_statement: CompoundStatement,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Declaration.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Declaration {
    /// Declaration specifiers.
    pub declaration_specifiers: Vec<DeclarationSpecifier>,
    /// List of initialization declarators.
    pub init_declarators: Vec<InitDeclarator>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Declaration specifier.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum DeclarationSpecifier {
    /// Storage class specifier.
    StorageClassSpecifier(StorageClassSpecifier),
    /// Type specifier.
    TypeSpecifier(TypeSpecifier),
    /// Type qualifier.
    TypeQualifier(TypeQualifier),
    /// Function specifier.
    FunctionSpecifier(FunctionSpecifier),
}

/// Storage class specifier.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum StorageClassSpecifier {
    /// typedef
    Typedef,
    /// extern
    Extern,
    /// static
    Static,
    /// auto
    Auto,
    /// register
    Register,
}

/// Type specifier.
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum TypeSpecifier {
    /// void
    Void,
    /// char
    Char,
    /// short
    Short,
    /// int
    Int,
    /// long
    Long,
    /// float
    Float,
    /// double
    Double,
    /// signed
    Signed,
    /// unsigned
    Unsigned,
    /// bool
    Bool,
    /// _Complex
    Complex,
    /// _Imaginary
    Imaginary,
    /// Struct or union specifier.
    StructOrUnion(StructOrUnionSpecifier),
    /// Enum specifier.
    Enum(EnumSpecifier),
    /// typedef name.
    TypedefName(String),
}

/// Type qualifier
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum TypeQualifier {
    /// const
    Const,
    /// restrict
    Restrict,
    /// volatile
    Volatile,
}

/// Function specifier
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum FunctionSpecifier {
    /// inline
    Inline,
    /// _Noreturn
    Noreturn,
}

/// Struct or union specifier
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct StructOrUnionSpecifier {
    /// Struct or union.
    pub struct_or_union: StructOrUnion,
    /// Identifier.
    pub identifier: Option<String>,
    /// List of struct declarations.
    pub struct_declarations: Option<Vec<StructDeclaration>>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Struct or union
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum StructOrUnion {
    /// struct
    Struct,
    /// union
    Union,
}

/// Struct declaration
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct StructDeclaration {
    /// List of specifier qualifiers.
    pub specifier_qualifiers: Vec<SpecifierQualifier>,
    /// List of struct declarators.
    pub struct_declarators: Vec<StructDeclarator>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Specifier qualifier
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum SpecifierQualifier {
    /// Type specifier.
    TypeSpecifier(TypeSpecifier),
    /// Type qualifier.
    TypeQualifier(TypeQualifier),
}

/// Struct declarator
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct StructDeclarator {
    /// Declarator.
    pub declarator: Option<Declarator>,
    /// Constant expression.
    pub constant_expression: Option<Expression>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Enum specifier
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct EnumSpecifier {
    /// Identifier.
    pub identifier: Option<String>,
    /// List of enumerators.
    pub enumerators: Option<Vec<Enumerator>>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Enumerator
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Enumerator {
    /// Enumerator identifier.
    pub identifier: String,
    /// Constant expression.
    pub constant_expression: Option<Expression>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Init declarator
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct InitDeclarator {
    /// Declarator.
    pub declarator: Declarator,
    /// Initializer.
    pub initializer: Option<Initializer>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Declarator
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Declarator {
    /// Pointer.
    pub pointer: Option<Pointer>,
    /// Direct declarator.
    pub direct_declarator: DirectDeclarator,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Pointer
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Pointer {
    /// Type qualifiers.
    pub type_qualifiers: Vec<TypeQualifier>,
    /// Pointer.
    pub pointer: Option<Box<Pointer>>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Direct declarator
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum DirectDeclarator {
    /// Identifier.
    Identifier(String),
    /// Declarator.
    Declarator(Box<Declarator>),
    /// Array.
    Array {
        /// Declarator.
        declarator: Box<DirectDeclarator>,
        /// Assignment expression.
        assignment_expression: Option<Expression>,
    },
    /// Function.
    Function {
        /// Declarator.
        declarator: Box<DirectDeclarator>,
        /// Parameter type list.
        parameter_type_list: Option<ParameterTypeList>,
        /// Identifier list.
        identifier_list: Option<Vec<String>>,
    },
}

/// Parameter type list
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ParameterTypeList {
    /// Parameter list.
    pub parameter_list: Vec<ParameterDeclaration>,
    /// Whether it is variadic.
    pub variadic: bool,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Parameter declaration
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ParameterDeclaration {
    /// Declaration specifiers.
    pub declaration_specifiers: Vec<DeclarationSpecifier>,
    /// Declarator.
    pub declarator: Option<Declarator>,
    /// Abstract declarator.
    pub abstract_declarator: Option<AbstractDeclarator>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Abstract declarator
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct AbstractDeclarator {
    /// Pointer.
    pub pointer: Option<Pointer>,
    /// Direct abstract declarator.
    pub direct_abstract_declarator: Option<Box<DirectAbstractDeclarator>>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: Range<usize>,
}

/// Direct abstract declarator
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum DirectAbstractDeclarator {
    /// Abstract declarator.
    AbstractDeclarator(Box<AbstractDeclarator>),
    /// Array.
    Array {
        /// Declarator.
        declarator: Option<Box<DirectAbstractDeclarator>>,
        /// Assignment expression.
        assignment_expression: Option<Box<Expression>>,
    },
    /// Function.
    Function {
        /// Declarator.
        declarator: Option<Box<DirectAbstractDeclarator>>,
        /// Parameter type list.
        parameter_type_list: Option<ParameterTypeList>,
    },
}

/// Initializer
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Initializer {
    /// Assignment expression.
    AssignmentExpression(Expression),
    /// Initializer list.
    InitializerList(Vec<Initializer>),
}

/// Statement
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum Statement {
    /// Labeled statement
    Labeled(LabeledStatement),
    /// Compound statement
    Compound(CompoundStatement),
    /// Expression statement
    Expression(ExpressionStatement),
    /// Selection statement
    Selection(SelectionStatement),
    /// Iteration statement
    Iteration(IterationStatement),
    /// Jump statement
    Jump(JumpStatement),
}

/// Labeled statement
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum LabeledStatement {
    /// Label.
    Label {
        /// Identifier.
        identifier: String,
        /// Statement.
        statement: Box<Statement>,
    },
    /// Case.
    Case {
        /// Constant expression.
        constant_expression: Expression,
        /// Statement.
        statement: Box<Statement>,
    },
    /// Default.
    Default {
        /// Statement.
        statement: Box<Statement>,
    },
}

/// Compound statement
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CompoundStatement {
    /// Block items.
    pub block_items: Vec<BlockItem>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Block item
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum BlockItem {
    /// Declaration.
    Declaration(Declaration),
    /// Statement.
    Statement(Statement),
}

/// Expression statement
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct ExpressionStatement {
    /// Expression.
    pub expression: Option<Expression>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Selection statement
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum SelectionStatement {
    /// If statement.
    If {
        /// Condition.
        condition: Expression,
        /// Then branch.
        then_branch: Box<Statement>,
        /// Else branch.
        else_branch: Option<Box<Statement>>,
    },
    /// Switch statement.
    Switch {
        /// Condition.
        condition: Expression,
        /// Statement.
        statement: Box<Statement>,
    },
}

/// Iteration statement
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum IterationStatement {
    /// While loop.
    While {
        /// Condition.
        condition: Expression,
        /// Statement.
        statement: Box<Statement>,
    },
    /// Do-while loop.
    DoWhile {
        /// Statement.
        statement: Box<Statement>,
        /// Condition.
        condition: Expression,
    },
    /// For loop.
    For {
        /// Initializer.
        initializer: Option<Box<ForInitializer>>,
        /// Condition.
        condition: Option<Expression>,
        /// Increment.
        increment: Option<Expression>,
        /// Statement.
        statement: Box<Statement>,
    },
}

/// For initializer
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ForInitializer {
    /// Expression.
    Expression(Expression),
    /// Declaration.
    Declaration(Declaration),
}

/// Jump statement
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum JumpStatement {
    /// Goto.
    Goto(String),
    /// Continue.
    Continue,
    /// Break.
    Break,
    /// Return.
    Return(Option<Expression>),
}

/// Expression
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Expression {
    /// Expression kind.
    pub kind: ExpressionKind,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: SourceSpan,
}

/// Expression kind
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum ExpressionKind {
    /// Identifier
    Identifier(String),
    /// Constant
    Constant(String),
    /// String literal
    StringLiteral(String),
    /// Parenthesized expression
    Parenthesized(Box<Expression>),
    /// Array access
    ArrayAccess {
        /// Array.
        array: Box<Expression>,
        /// Index.
        index: Box<Expression>,
    },
    /// Function call
    FunctionCall {
        /// Function.
        function: Box<Expression>,
        /// Arguments.
        arguments: Vec<Expression>,
    },
    /// Member access
    MemberAccess {
        /// Object.
        object: Box<Expression>,
        /// Member.
        member: String,
        /// Whether it's a pointer.
        is_pointer: bool,
    },
    /// Unary operation
    Unary {
        /// Operator.
        operator: UnaryOperator,
        /// Operand.
        operand: Box<Expression>,
    },
    /// Binary operation
    Binary {
        /// Left.
        left: Box<Expression>,
        /// Operator.
        operator: BinaryOperator,
        /// Right.
        right: Box<Expression>,
    },
    /// Conditional expression
    Conditional {
        /// Condition.
        condition: Box<Expression>,
        /// Then branch.
        then_branch: Box<Expression>,
        /// Else branch.
        else_branch: Box<Expression>,
    },
    /// Assignment
    Assignment {
        /// Left.
        left: Box<Expression>,
        /// Operator.
        operator: AssignmentOperator,
        /// Right.
        right: Box<Expression>,
    },
    /// Comma expression
    Comma(Vec<Expression>),
}

/// Unary operator
#[derive(Debug, Clone, Copy, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum UnaryOperator {
    /// Post-increment (x++)
    PostIncrement,
    /// Post-decrement (x--)
    PostDecrement,
    /// Pre-increment (++x)
    PreIncrement,
    /// Pre-decrement (--x)
    PreDecrement,
    /// Address of (&x)
    AddressOf,
    /// Indirection (*x)
    Deref,
    /// Unary plus (+x)
    Plus,
    /// Unary minus (-x)
    Minus,
    /// Bitwise NOT (~x)
    BitNot,
    /// Logical NOT (!x)
    LogicalNot,
    /// Size of (sizeof)
    Sizeof,
    /// Align of (alignof)
    AlignOf,
}

/// Binary operator
#[derive(Debug, Clone, Copy, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum BinaryOperator {
    /// Addition (+)
    Add,
    /// Subtraction (-)
    Subtract,
    /// Multiplication (*)
    Multiply,
    /// Division (/)
    Divide,
    /// Modulo (%)
    Remainder,
    /// Bitwise shift left (<<)
    ShiftLeft,
    /// Bitwise shift right (>>)
    ShiftRight,
    /// Less than (<)
    Less,
    /// Greater than (>)
    Greater,
    /// Less than or equal (<=)
    LessEqual,
    /// Greater than or equal (>=)
    GreaterEqual,
    /// Equal (==)
    Equal,
    /// Not equal (!=)
    NotEqual,
    /// Bitwise AND (&)
    BitAnd,
    /// Bitwise XOR (^)
    BitXor,
    /// Bitwise OR (|)
    BitOr,
    /// Logical AND (&&)
    LogicalAnd,
    /// Logical OR (||)
    LogicalOr,
}

/// Assignment operator
#[derive(Debug, Clone, Copy, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub enum AssignmentOperator {
    /// Assignment (=)
    Assign,
    /// Addition assignment (+=)
    AddAssign,
    /// Subtraction assignment (-=)
    SubAssign,
    /// Multiplication assignment (*=)
    MulAssign,
    /// Division assignment (/=)
    DivAssign,
    /// Modulo assignment (%=)
    RemAssign,
    /// Bitwise shift left assignment (<<=)
    ShlAssign,
    /// Bitwise shift right assignment (>>=)
    ShrAssign,
    /// Bitwise AND assignment (&=)
    AndAssign,
    /// Bitwise XOR assignment (^=)
    XorAssign,
    /// Bitwise OR assignment (|=)
    OrAssign,
}

/// Type name
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct TypeName {
    /// List of specifier qualifiers.
    pub specifier_qualifiers: Vec<SpecifierQualifier>,
    /// Abstract declarator.
    pub abstract_declarator: Option<Box<AbstractDeclarator>>,
    /// Source span.
    #[cfg_attr(feature = "serde", serde(with = "oak_core::serde_range"))]
    pub span: Range<usize>,
}

impl TypeName {
    /// Create a new type name
    pub fn new(specifier_qualifiers: Vec<SpecifierQualifier>, abstract_declarator: Option<Box<AbstractDeclarator>>, span: Range<usize>) -> Self {
        Self { specifier_qualifiers, abstract_declarator, span }
    }
}

impl CppRoot {
    /// Create a new AST
    pub fn new(translation_unit: TranslationUnit) -> Self {
        Self { translation_unit }
    }
}

impl TranslationUnit {
    /// Create a new translation unit
    pub fn new(external_declarations: Vec<ExternalDeclaration>, span: Range<usize>) -> Self {
        Self { external_declarations, span }
    }
}