boa/syntax/ast/node/field/
mod.rs

1//! Field nodes
2
3pub mod get_const_field;
4pub mod get_field;
5
6pub use self::{get_const_field::GetConstField, get_field::GetField};
7
8#[cfg(test)]
9mod tests;