|
|
|
|
|
by fpoling
400 days ago
|
|
Rust provides file!, line! and column! macros that expands into a compile-time constants that the compiler embeds then into the executable. This way no source map at runtime is necessary as the relevant errors are constructed from those constants. Presumably StackError just uses those macros. But for debugging a source map is still necessary and is a part of various debug formats. |
|