use crate::*;
/// Implementation of the `Parse` trait for `MultiHyperlaneAttr`.
///
/// This implementation allows parsing multiple variable-type pairs from a token stream,
/// expecting the format `variable_name: TypeName, variable_name2: TypeName2, ...`.
/// Also supports single pair format for backward compatibility.
///
/// # Arguments
///
/// - `ParseStream` - The `ParseStream` to parse from.
///
/// # Returns
///
/// A `syn::Result` containing the parsed `MultiHyperlaneAttr` or an error.