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
//! A simple label used to jump to a code location.

use serde::{Deserialize, Serialize};
use std::fmt;

/// A label that can be jumped to.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct Label {
    name: &'static str,
    id: usize,
}

impl Label {
    /// Construct a new label.
    pub fn new(name: &'static str, id: usize) -> Self {
        Self { name, id }
    }

    /// Convert into owned label.
    pub fn into_owned(self) -> DebugLabel {
        DebugLabel {
            name: self.name.to_owned(),
            id: self.id,
        }
    }
}

impl fmt::Display for Label {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}_{}", self.name, self.id)
    }
}

/// A label that can be jumped to.
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct DebugLabel {
    /// The name of the label.
    name: String,
    /// The id of the label.
    id: usize,
}

impl fmt::Display for DebugLabel {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}_{}", self.name, self.id)
    }
}