TypeScript-Rust-Compiler 0.4.0

High-performance TypeScript to Rust compiler
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
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
//! Abstract Syntax Tree (AST) definitions for TypeScript

use serde::{Deserialize, Serialize};

/// Root program node
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Program {
    pub statements: Vec<Statement>,
}

/// Statement types
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Statement {
    VariableDeclaration(VariableDeclaration),
    FunctionDeclaration(FunctionDeclaration),
    ClassDeclaration(ClassDeclaration),
    InterfaceDeclaration(InterfaceDeclaration),
    TypeAlias(TypeAlias),
    EnumDeclaration(EnumDeclaration),
    ImportDeclaration(ImportDeclaration),
    ExportDeclaration(Box<ExportDeclaration>),
    NamespaceDeclaration(NamespaceDeclaration),
    ModuleDeclaration(ModuleDeclaration),
    DeclareStatement(Box<DeclareStatement>),
    BlockStatement(BlockStatement),
    ExpressionStatement(ExpressionStatement),
    IfStatement(Box<IfStatement>),
    WhileStatement(WhileStatement),
    ForStatement(ForStatement),
    ReturnStatement(ReturnStatement),
    BreakStatement(BreakStatement),
    ContinueStatement(ContinueStatement),
    ThrowStatement(ThrowStatement),
    TryStatement(Box<TryStatement>),
    SwitchStatement(SwitchStatement),
}

/// Variable declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VariableDeclaration {
    pub keyword: crate::lexer::Keyword,
    pub name: String,
    pub type_annotation: Option<Type>,
    pub initializer: Option<Expression>,
}

/// Function declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FunctionDeclaration {
    pub name: String,
    pub type_parameters: Vec<TypeParameter>,
    pub parameters: Vec<Parameter>,
    pub return_type: Option<Type>,
    pub body: Box<Statement>,
}

/// Class declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ClassDeclaration {
    pub name: String,
    pub type_parameters: Vec<TypeParameter>,
    pub extends: Option<Type>,
    pub implements: Vec<Type>,
    pub body: ClassBody,
}

/// Interface declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct InterfaceDeclaration {
    pub name: String,
    pub type_parameters: Vec<TypeParameter>,
    pub extends: Vec<Type>,
    pub body: InterfaceBody,
}

/// Type alias
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TypeAlias {
    pub name: String,
    pub type_parameters: Vec<TypeParameter>,
    pub type_definition: Type,
}

/// Enum declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EnumDeclaration {
    pub name: String,
    pub members: Vec<EnumMember>,
}

/// Import declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ImportDeclaration {
    pub specifiers: Vec<ImportSpecifier>,
    pub source: String,
}

/// Export declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ExportDeclaration {
    pub declaration: Box<Statement>,
}

/// Namespace declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NamespaceDeclaration {
    pub name: String,
    pub body: Box<Statement>,
}

/// Module declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ModuleDeclaration {
    pub name: String,
    pub body: Box<Statement>,
}

/// Declare statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DeclareStatement {
    pub declaration: Box<Statement>,
}

/// Block statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BlockStatement {
    pub statements: Vec<Statement>,
}

/// Expression statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ExpressionStatement {
    pub expression: Expression,
}

/// If statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct IfStatement {
    pub condition: Expression,
    pub consequent: Box<Statement>,
    pub alternate: Option<Statement>,
}

/// While statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WhileStatement {
    pub condition: Expression,
    pub body: Box<Statement>,
}

/// For statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ForStatement {
    pub init: Option<Expression>,
    pub condition: Option<Expression>,
    pub update: Option<Expression>,
    pub body: Box<Statement>,
}

/// Return statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ReturnStatement {
    pub argument: Option<Expression>,
}

/// Break statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BreakStatement {
    pub label: Option<String>,
}

/// Continue statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ContinueStatement {
    pub label: Option<String>,
}

/// Throw statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ThrowStatement {
    pub argument: Expression,
}

/// Try statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TryStatement {
    pub block: Box<Statement>,
    pub handler: Option<CatchClause>,
    pub finalizer: Option<Statement>,
}

/// Switch statement
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SwitchStatement {
    pub discriminant: Expression,
    pub cases: Vec<SwitchCase>,
}

/// Expression types
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Expression {
    Literal(Literal),
    Identifier(String),
    Binary(BinaryExpression),
    Unary(UnaryExpression),
    Logical(LogicalExpression),
    Conditional(ConditionalExpression),
    Assignment(AssignmentExpression),
    Call(CallExpression),
    Member(MemberExpression),
    Array(ArrayExpression),
    Object(ObjectExpression),
    Parenthesized(ParenthesizedExpression),
    Arrow(Box<ArrowFunctionExpression>),
    New(NewExpression),
    Super(SuperExpression),
    This(ThisExpression),
    Yield(Box<YieldExpression>),
    Await(AwaitExpression),
    TypeAssertion(TypeAssertion),
    AsExpression(AsExpression),
    NonNull(NonNullExpression),
    Optional(OptionalExpression),
    Template(TemplateLiteral),
    TaggedTemplate(TaggedTemplateExpression),
}

/// Literal values
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Literal {
    String(String),
    Number(f64),
    Boolean(bool),
    Null,
    Undefined,
    RegExp(String, String), // pattern, flags
    BigInt(String),
}

/// Binary expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BinaryExpression {
    pub left: Box<Expression>,
    pub operator: crate::lexer::Token,
    pub right: Box<Expression>,
}

/// Unary expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct UnaryExpression {
    pub operator: crate::lexer::Token,
    pub argument: Box<Expression>,
}

/// Logical expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LogicalExpression {
    pub left: Box<Expression>,
    pub operator: crate::lexer::Token,
    pub right: Box<Expression>,
}

/// Conditional expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ConditionalExpression {
    pub test: Box<Expression>,
    pub consequent: Box<Expression>,
    pub alternate: Box<Expression>,
}

/// Assignment expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AssignmentExpression {
    pub left: Box<Expression>,
    pub operator: crate::lexer::Token,
    pub right: Box<Expression>,
}

/// Call expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CallExpression {
    pub callee: Box<Expression>,
    pub arguments: Vec<Expression>,
}

/// Member expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MemberExpression {
    pub object: Box<Expression>,
    pub property: Box<Expression>,
    pub computed: bool,
}

/// Array expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ArrayExpression {
    pub elements: Vec<Option<Expression>>,
}

/// Object expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ObjectExpression {
    pub properties: Vec<ObjectProperty>,
}

/// Object property
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ObjectProperty {
    pub key: Expression,
    pub value: Expression,
    pub shorthand: bool,
    pub computed: bool,
    pub method: bool,
}

/// Parenthesized expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ParenthesizedExpression {
    pub expression: Box<Expression>,
}

/// Arrow function expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ArrowFunctionExpression {
    pub type_parameters: Vec<TypeParameter>,
    pub parameters: Vec<Parameter>,
    pub return_type: Option<Box<Type>>,
    pub body: Box<Statement>,
}

/// New expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NewExpression {
    pub callee: Box<Expression>,
    pub arguments: Vec<Expression>,
}

/// Super expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SuperExpression;

/// This expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ThisExpression;

/// Yield expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct YieldExpression {
    pub argument: Option<Box<Expression>>,
    pub delegate: bool,
}

/// Await expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AwaitExpression {
    pub argument: Box<Expression>,
}

/// Type assertion
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TypeAssertion {
    pub expression: Box<Expression>,
    pub type_: Type,
}

/// As expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AsExpression {
    pub expression: Box<Expression>,
    pub type_: Type,
}

/// Non-null expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NonNullExpression {
    pub expression: Box<Expression>,
}

/// Optional expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct OptionalExpression {
    pub expression: Box<Expression>,
    pub optional: bool,
}

/// Template literal
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TemplateLiteral {
    pub quasis: Vec<TemplateElement>,
    pub expressions: Vec<Expression>,
}

/// Template element
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TemplateElement {
    pub value: String,
    pub tail: bool,
}

/// Tagged template expression
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TaggedTemplateExpression {
    pub tag: Box<Expression>,
    pub quasi: TemplateLiteral,
}

/// Type definitions
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Type {
    // Primitive types
    String,
    Number,
    Boolean,
    Any,
    Void,
    Never,
    Unknown,
    Null,
    Undefined,
    Object,
    Symbol,
    BigInt,

    // Named types
    Named(String),
    Qualified(QualifiedTypeName),

    // Generic types
    Generic(GenericType),
    GenericNamed {
        name: String,
        type_arguments: Vec<Type>,
    },

    // Union and intersection types
    Union {
        left: Box<Type>,
        right: Box<Type>,
    },
    Intersection {
        left: Box<Type>,
        right: Box<Type>,
    },

    // Array and tuple types
    Array(Box<Type>),
    Tuple(Vec<Type>),

    // Function types
    Function(Box<FunctionType>),

    // Object types
    ObjectType(ObjectType),

    // Index signatures
    IndexSignature(Box<IndexSignature>),

    // Mapped types
    Mapped(Box<MappedType>),

    // Conditional types
    Conditional(ConditionalType),

    // Template literal types
    TemplateLiteral(TemplateLiteralType),

    // Parenthesized types
    Parenthesized(Box<Type>),

    // Type queries
    TypeQuery(Box<TypeQuery>),

    // Import types
    Import(Box<ImportType>),
}

/// Qualified type name
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct QualifiedTypeName {
    pub left: Box<Type>,
    pub right: String,
}

/// Generic type
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GenericType {
    pub type_: Box<Type>,
    pub type_arguments: Vec<Type>,
}

/// Function type
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FunctionType {
    pub type_parameters: Vec<TypeParameter>,
    pub parameters: Vec<Parameter>,
    pub return_type: Box<Type>,
}

/// Object type
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ObjectType {
    pub members: Vec<ObjectTypeMember>,
}

/// Object type member
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum ObjectTypeMember {
    Property(PropertySignature),
    Method(MethodSignature),
    Index(IndexSignature),
    Call(CallSignature),
    Construct(ConstructSignature),
}

/// Property signature
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PropertySignature {
    pub name: String,
    pub optional: bool,
    pub type_: Option<Type>,
    pub readonly: bool,
}

/// Method signature
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MethodSignature {
    pub name: String,
    pub optional: bool,
    pub type_parameters: Vec<TypeParameter>,
    pub parameters: Vec<Parameter>,
    pub return_type: Option<Type>,
}

/// Index signature
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct IndexSignature {
    pub parameter: Box<Parameter>,
    pub type_: Type,
    pub readonly: bool,
}

/// Call signature
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CallSignature {
    pub type_parameters: Vec<TypeParameter>,
    pub parameters: Vec<Parameter>,
    pub return_type: Option<Type>,
}

/// Construct signature
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ConstructSignature {
    pub type_parameters: Vec<TypeParameter>,
    pub parameters: Vec<Parameter>,
    pub return_type: Option<Type>,
}

/// Mapped type
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MappedType {
    pub type_parameter: Box<TypeParameter>,
    pub constraint: Option<Box<Type>>,
    pub name_type: Option<Box<Type>>,
    pub type_: Box<Type>,
    pub readonly: Option<bool>,
    pub optional: Option<bool>,
}

/// Conditional type
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ConditionalType {
    pub check_type: Box<Type>,
    pub extends_type: Box<Type>,
    pub true_type: Box<Type>,
    pub false_type: Box<Type>,
}

/// Template literal type
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TemplateLiteralType {
    pub head: String,
    pub spans: Vec<TemplateLiteralTypeSpan>,
}

/// Template literal type span
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TemplateLiteralTypeSpan {
    pub type_: Type,
    pub literal: String,
}

/// Type query
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TypeQuery {
    pub expr_name: Box<Expression>,
}

/// Import type
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ImportType {
    pub argument: Box<Type>,
    pub qualifier: Option<String>,
    pub type_arguments: Option<Vec<Type>>,
}

/// Type parameter
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TypeParameter {
    pub name: String,
    pub constraint: Option<Box<Type>>,
    pub default: Option<Box<Type>>,
}

/// Parameter
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Parameter {
    pub name: String,
    pub optional: bool,
    pub type_: Option<Box<Type>>,
    pub initializer: Option<Expression>,
    pub rest: bool,
}

/// Class body
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ClassBody {
    pub members: Vec<ClassMember>,
}

/// Class member
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum ClassMember {
    Property(PropertyDeclaration),
    Method(MethodDeclaration),
    Constructor(ConstructorDeclaration),
    Getter(GetterDeclaration),
    Setter(SetterDeclaration),
    Index(IndexSignature),
    Decorator(String), // For decorator support
}

/// Property declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PropertyDeclaration {
    pub name: String,
    pub optional: bool,
    pub type_: Option<Type>,
    pub initializer: Option<Expression>,
    pub modifiers: Vec<Modifier>,
    pub decorators: Vec<String>,
}

/// Method declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MethodDeclaration {
    pub name: String,
    pub optional: bool,
    pub type_parameters: Vec<TypeParameter>,
    pub parameters: Vec<Parameter>,
    pub return_type: Option<Type>,
    pub body: Option<Statement>,
    pub modifiers: Vec<Modifier>,
    pub decorators: Vec<String>,
}

/// Constructor declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ConstructorDeclaration {
    pub parameters: Vec<Parameter>,
    pub body: Option<Statement>,
    pub modifiers: Vec<Modifier>,
    pub decorators: Vec<String>,
}

/// Getter declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct GetterDeclaration {
    pub name: String,
    pub type_: Option<Type>,
    pub body: Option<Statement>,
    pub modifiers: Vec<Modifier>,
    pub decorators: Vec<String>,
}

/// Setter declaration
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SetterDeclaration {
    pub name: String,
    pub parameter: Parameter,
    pub body: Option<Statement>,
    pub modifiers: Vec<Modifier>,
    pub decorators: Vec<String>,
}

/// Interface body
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct InterfaceBody {
    pub members: Vec<ObjectTypeMember>,
}

/// Enum member
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct EnumMember {
    pub name: String,
    pub initializer: Option<Expression>,
}

/// Import specifier
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum ImportSpecifier {
    Named(NamedImportSpecifier),
    Default(DefaultImportSpecifier),
    Namespace(NamespaceImportSpecifier),
}

/// Named import specifier
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NamedImportSpecifier {
    pub name: String,
    pub imported: String,
}

/// Default import specifier
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DefaultImportSpecifier {
    pub name: String,
}

/// Namespace import specifier
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct NamespaceImportSpecifier {
    pub name: String,
}

/// Catch clause
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CatchClause {
    pub parameter: Option<Parameter>,
    pub body: Box<Statement>,
}

/// Switch case
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SwitchCase {
    pub expression: Option<Expression>,
    pub statements: Vec<Statement>,
}

/// Modifier
#[derive(Debug, Clone, Serialize, Deserialize)]
pub enum Modifier {
    Public,
    Private,
    Protected,
    Static,
    Readonly,
    Abstract,
    Async,
    Override,
}

/// Source location information
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SourceLocation {
    pub start: Position,
    pub end: Position,
}

/// Position in source code
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Position {
    pub line: usize,
    pub column: usize,
    pub offset: usize,
}