wright/ast/literal.rs
1//! AST node models representing literal values in source code.
2
3use num::BigUint;
4
5use crate::source_tracking::fragment::Fragment;
6
7/// An integer literal from source. This only contains unsigned integers as writing negative numbers is considered
8/// to be a combination of an integer literal with a unary negation.
9#[derive(Debug)]
10pub struct IntegerLiteral {
11 /// The [Fragment] of source code containing this integer literal.
12 pub fragment: Fragment,
13
14 /// The value of the integer parsed from the matching source.
15 pub value: BigUint,
16}
17
18/// A boolean literal from source.
19#[derive(Debug)]
20pub struct BooleanLiteral {
21 /// The [Fragment] of source code containing this boolean literal.
22 pub fragment: Fragment,
23
24 /// The value of the boolean literal.
25 pub value: bool,
26}