You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should replace this with the source maps that are now being produced by the compiler since #5521
#[derive(Debug,Clone,Default,Serialize,Deserialize)]pubstructSourceMap{/// Paths of dependencies in the `~/.forc` directory, with the prefix stripped./// This makes inverse source mapping work on any machine with deps downloaded.pubdependency_paths:Vec<PathBuf>,/// Paths to source code files, defined separately to avoid repetition.pubpaths:Vec<PathBuf>,/// Mapping from opcode index to source location// count of instructions, multiply the opcode by 4 to get the byte offsetpubmap:BTreeMap<usize,SourceMapSpan>,}
The text was updated successfully, but these errors were encountered:
forc-debug currently defines and works with the source map as below
We should replace this with the source maps that are now being produced by the compiler since #5521
The text was updated successfully, but these errors were encountered: