//! (EnvironmentSlot,EnvironmentHops) pair represent the reference to a slot in //! an environment object in the environment chain. //! //! See the SMDOC comment in m-c/js/src/vm/EnvironmentObject.h for the details //! about environment object and environment chain.
/// Slot in the environmentslot object. #[derive(Clone, Copy, Debug, PartialEq, Eq, Ord, PartialOrd)] pubstruct EnvironmentSlot {
slot: u32,
}
/// The number of environment objects to skip (hop) on the environment chain in /// order to find the associated environment object. #[derive(Clone, Copy, Debug, PartialEq, Eq, Ord, PartialOrd)] pubstruct EnvironmentHops {
hops: u8,
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.