nova_vm 1.0.0

Nova Virtual Machine
Documentation
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

//! # [7 Abstract Operations](https://tc39.es/ecma262/#sec-abstract-operations)
//!
//! These operations are not a part of the ECMAScript language; they are
//! defined here solely to aid the specification of the semantics of the
//! ECMAScript language. Other, more specialized abstract operations are
//! defined throughout this specification.

mod keyed_group;
mod operations_on_iterator_objects;
mod operations_on_objects;
mod testing_and_comparison;
mod type_conversion;

pub(crate) use keyed_group::*;
pub(crate) use operations_on_iterator_objects::*;
pub(crate) use operations_on_objects::*;
pub(crate) use testing_and_comparison::*;
pub(crate) use type_conversion::*;