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
//! AST Node ID and flags.
use bitflags::bitflags;
use oxc_index::define_nonmax_u32_index_type;
define_nonmax_u32_index_type! {
/// AST Node ID
pub struct NodeId;
}
impl NodeId {
/// Mock node id.
///
/// This is used for synthetically-created AST nodes, among other things.
pub const DUMMY: Self = NodeId::new(0);
/// Node id of the Program node.
pub const ROOT: Self = NodeId::new(0);
}
bitflags! {
/// Contains additional information about an AST node.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct NodeFlags: u8 {
/// Set if the Node has a JSDoc comment attached
const JSDoc = 1 << 0;
/// Set on Nodes inside classes
const Class = 1 << 1;
/// Set functions containing yield statements
const HasYield = 1 << 2;
/// Set for `export { specifier }`
const ExportSpecifier = 1 << 3;
}
}
impl NodeFlags {
/// Returns `true` if this node has a JSDoc comment attached to it.
#[inline]
pub fn has_jsdoc(self) -> bool {
self.contains(Self::JSDoc)
}
/// Returns `true` if this node is inside a class.
#[inline]
pub fn has_class(self) -> bool {
self.contains(Self::Class)
}
/// Returns `true` if this function has a yield statement.
#[inline]
pub fn has_yield(self) -> bool {
self.contains(Self::HasYield)
}
/// Returns `true` if this function has an export specifier.
#[inline]
pub fn has_export_specifier(self) -> bool {
self.contains(Self::ExportSpecifier)
}
}