rajac-ast 0.1.1

Abstract syntax tree definitions for the rajac Java 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
use super::ast_type::{AstTypeId, AstTypeParam};
use rajac_base::shared_string::SharedString;
use rajac_types::{FieldId as ResolvedFieldId, Ident, MethodId as ResolvedMethodId, TypeId};
use std::ops::Range;

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Span(pub Range<usize>);

#[derive(Debug, Clone, PartialEq)]
pub struct AstNode<T> {
    pub kind: T,
    pub span: Span,
}

impl<T> AstNode<T> {
    pub fn new(kind: T, span: Span) -> Self {
        Self { kind, span }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub enum UnaryOp {
    Plus,
    Minus,
    Bang,
    Tilde,
    Increment,
    Decrement,
}

#[derive(Debug, Clone, PartialEq)]
pub enum BinaryOp {
    Add,
    Sub,
    Mul,
    Div,
    Mod,
    BitAnd,
    BitOr,
    BitXor,
    LShift,
    RShift,
    ARShift,
    Lt,
    LtEq,
    Gt,
    GtEq,
    EqEq,
    BangEq,
    And,
    Or,
}

#[derive(Debug, Clone, PartialEq)]
pub enum AssignOp {
    Eq,
    AddEq,
    SubEq,
    MulEq,
    DivEq,
    ModEq,
    AndEq,
    OrEq,
    XorEq,
    LShiftEq,
    RShiftEq,
    ARShiftEq,
}

#[derive(Debug, Clone, PartialEq)]
pub enum LiteralKind {
    Int,
    Long,
    Float,
    Double,
    Char,
    String,
    Bool,
    Null,
}

#[derive(Debug, Clone, PartialEq)]
pub struct Literal {
    pub kind: LiteralKind,
    pub value: SharedString,
}

#[derive(Debug, Clone, PartialEq)]
pub struct Ast {
    pub statements: Vec<StmtId>,
    pub source: SharedString,
    pub package: Option<PackageDecl>,
    pub imports: Vec<ImportDecl>,
    pub classes: Vec<ClassDeclId>,
}

impl Ast {
    pub fn new(source: SharedString) -> Self {
        Self {
            statements: Vec::new(),
            source,
            package: None,
            imports: Vec::new(),
            classes: Vec::new(),
        }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub struct PackageDecl {
    pub name: QualifiedName,
}

#[derive(Debug, Clone, PartialEq)]
pub struct ImportDecl {
    pub name: QualifiedName,
    pub is_static: bool,
    pub is_on_demand: bool,
}

#[derive(Debug, Clone, PartialEq)]
pub struct QualifiedName {
    pub segments: Vec<SharedString>,
}

impl QualifiedName {
    pub fn new(segments: Vec<SharedString>) -> Self {
        Self { segments }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub enum ClassKind {
    Class,
    Interface,
    Enum,
    Record,
    Annotation,
}

#[derive(Debug, Clone, PartialEq)]
pub struct ClassDecl {
    pub kind: ClassKind,
    pub name: Ident,
    pub type_params: Vec<AstTypeParam>,
    pub extends: Option<AstTypeId>,
    pub implements: Vec<AstTypeId>,
    pub permits: Vec<AstTypeId>,
    pub enum_entries: Vec<EnumEntry>,
    pub members: Vec<ClassMemberId>,
    pub modifiers: Modifiers,
}

#[derive(Debug, Clone, PartialEq)]
pub enum ClassMember {
    Field(Field),
    Method(Method),
    Constructor(Constructor),
    StaticBlock(StmtId),
    NestedClass(ClassDeclId),
    NestedInterface(ClassDeclId),
    NestedEnum(ClassDeclId),
    NestedRecord(ClassDeclId),
    NestedAnnotation(ClassDeclId),
}

#[derive(Debug, Clone, PartialEq)]
pub struct Constructor {
    pub name: Ident,
    pub params: Vec<ParamId>,
    pub body: Option<StmtId>,
    pub throws: Vec<AstTypeId>,
    pub modifiers: Modifiers,
}

#[derive(Debug, Clone, PartialEq)]
pub struct EnumEntry {
    pub name: Ident,
    pub args: Vec<ExprId>,
    pub body: Option<Vec<ClassMemberId>>,
}

#[derive(Debug, Clone, PartialEq)]
pub enum Stmt {
    Empty,
    Block(Vec<StmtId>),
    Expr(ExprId),
    If {
        condition: ExprId,
        then_branch: StmtId,
        else_branch: Option<StmtId>,
    },
    While {
        condition: ExprId,
        body: StmtId,
    },
    DoWhile {
        body: StmtId,
        condition: ExprId,
    },
    For {
        init: Option<ForInit>,
        condition: Option<ExprId>,
        update: Option<ExprId>,
        body: StmtId,
    },
    Switch {
        expr: ExprId,
        cases: Vec<SwitchCase>,
    },
    Return(Option<ExprId>),
    Break(Option<Ident>),
    Continue(Option<Ident>),
    Label(Ident, StmtId),
    Try {
        try_block: StmtId,
        catches: Vec<CatchClause>,
        finally_block: Option<StmtId>,
    },
    Throw(ExprId),
    Synchronized {
        expr: Option<ExprId>,
        block: StmtId,
    },
    LocalVar {
        ty: AstTypeId,
        name: Ident,
        initializer: Option<ExprId>,
    },
}

#[derive(Debug, Clone, PartialEq)]
pub enum ForInit {
    Expr(ExprId),
    LocalVar {
        ty: AstTypeId,
        name: Ident,
        initializer: Option<ExprId>,
    },
}

#[derive(Debug, Clone, PartialEq)]
pub struct CatchClause {
    pub param: ParamId,
    pub body: StmtId,
}

#[derive(Debug, Clone, PartialEq)]
pub struct SwitchCase {
    pub labels: Vec<SwitchLabel>,
    pub body: Vec<StmtId>,
}

#[derive(Debug, Clone, PartialEq)]
pub enum SwitchLabel {
    Case(ExprId),
    Default,
}

#[derive(Debug, Clone, PartialEq)]
pub enum Expr {
    Error,
    Ident(Ident),
    Literal(Literal),
    Unary {
        op: UnaryOp,
        expr: ExprId,
    },
    Binary {
        op: BinaryOp,
        lhs: ExprId,
        rhs: ExprId,
    },
    Assign {
        op: AssignOp,
        lhs: ExprId,
        rhs: ExprId,
    },
    Ternary {
        condition: ExprId,
        then_expr: ExprId,
        else_expr: ExprId,
    },
    Cast {
        ty: AstTypeId,
        expr: ExprId,
    },
    InstanceOf {
        expr: ExprId,
        ty: AstTypeId,
    },
    FieldAccess {
        expr: ExprId,
        name: Ident,
        field_id: Option<ResolvedFieldId>,
    },
    MethodCall {
        expr: Option<ExprId>,
        name: Ident,
        type_args: Option<Vec<AstTypeId>>,
        args: Vec<ExprId>,
        method_id: Option<ResolvedMethodId>,
    },
    New {
        ty: AstTypeId,
        args: Vec<ExprId>,
    },
    NewArray {
        ty: AstTypeId,
        dimensions: Vec<ExprId>,
        initializer: Option<ExprId>,
    },
    ArrayInitializer {
        elements: Vec<ExprId>,
    },
    ArrayAccess {
        array: ExprId,
        index: ExprId,
    },
    ArrayLength {
        array: ExprId,
    },
    This(Option<ExprId>),
    Super,
    SuperCall {
        name: Ident,
        type_args: Option<Vec<AstTypeId>>,
        args: Vec<ExprId>,
        method_id: Option<ResolvedMethodId>,
    },
}

#[derive(Debug, Clone, PartialEq)]
pub struct TypedExpr {
    pub expr: Expr,
    pub ty: TypeId,
}

impl TypedExpr {
    pub fn new(expr: Expr) -> Self {
        Self {
            expr,
            ty: TypeId::INVALID,
        }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub struct Param {
    pub ty: AstTypeId,
    pub name: Ident,
    pub varargs: bool,
}

#[derive(Debug, Clone, PartialEq)]
pub struct Method {
    pub name: Ident,
    pub params: Vec<ParamId>,
    pub return_ty: AstTypeId,
    pub body: Option<StmtId>,
    pub throws: Vec<AstTypeId>,
    pub modifiers: Modifiers,
}

#[derive(Debug, Clone, PartialEq)]
pub struct Field {
    pub name: Ident,
    pub ty: AstTypeId,
    pub initializer: Option<ExprId>,
    pub modifiers: Modifiers,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct StmtId(pub u32);

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct ExprId(pub u32);

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct ParamId(pub u32);

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct MethodId(pub u32);

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct FieldId(pub u32);

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct ClassDeclId(pub u32);

#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct ClassMemberId(pub u32);

#[derive(Debug, Clone, Default, PartialEq, Eq, Hash)]
pub struct Modifiers(pub u32);

impl Modifiers {
    pub const PUBLIC: u32 = 0x0001;
    pub const PRIVATE: u32 = 0x0002;
    pub const PROTECTED: u32 = 0x0004;
    pub const STATIC: u32 = 0x0008;
    pub const FINAL: u32 = 0x0010;
    pub const SYNCHRONIZED: u32 = 0x0020;
    pub const VOLATILE: u32 = 0x0040;
    pub const TRANSIENT: u32 = 0x0080;
    pub const NATIVE: u32 = 0x0100;
    pub const INTERFACE: u32 = 0x0200;
    pub const ABSTRACT: u32 = 0x0400;
    pub const STRICTFP: u32 = 0x0800;
    pub const SYNTHETIC: u32 = 0x1000;
    pub const ANNOTATION: u32 = 0x2000;
    pub const ENUM: u32 = 0x4000;
    pub const MODULE: u32 = 0x8000;

    pub fn is_public(&self) -> bool {
        self.0 & Self::PUBLIC != 0
    }

    pub fn is_private(&self) -> bool {
        self.0 & Self::PRIVATE != 0
    }

    pub fn is_protected(&self) -> bool {
        self.0 & Self::PROTECTED != 0
    }

    pub fn is_static(&self) -> bool {
        self.0 & Self::STATIC != 0
    }

    pub fn is_final(&self) -> bool {
        self.0 & Self::FINAL != 0
    }

    pub fn is_abstract(&self) -> bool {
        self.0 & Self::ABSTRACT != 0
    }
}