Type Alias ErrorMsg
Source pub type ErrorMsg = Immediate<Arc<str>>;
Expand description
The type of error messages used in MASM assertions.
pub enum ErrorMsg {
Value(Span<Arc<str>>),
Constant(Ident),
}
A literal integer value, either decimal or hex-encoded
A constant identifier
This must refer to a constant definition in the current module.
All immediates of this type are folded to Value
during
semantic analysis, once all constant definitions are evaluated.