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
Information about the original Dart source code that generates some output (e.g. SystemVerilog) could theoretically be extracted during construction and annotated in the result, for example using StackTrace. This type of information could be valuable for debug and mapping of generated outputs back to their original ROHD representation.
Desired solution
Add a way to annotate generated outputs with the original source code line in Dart.
Alternatives considered
No response
Additional details
The StackTrace functionality in Dart should be helpful here, but it might be tricky to figure out which lines in a trace are useful/relevant and which trace is most relevant to a generated line of verilog, since many pieces of code may contribute.
The text was updated successfully, but these errors were encountered:
Motivation
Information about the original Dart source code that generates some output (e.g. SystemVerilog) could theoretically be extracted during construction and annotated in the result, for example using
StackTrace
. This type of information could be valuable for debug and mapping of generated outputs back to their original ROHD representation.Desired solution
Add a way to annotate generated outputs with the original source code line in Dart.
Alternatives considered
No response
Additional details
The
StackTrace
functionality in Dart should be helpful here, but it might be tricky to figure out which lines in a trace are useful/relevant and which trace is most relevant to a generated line of verilog, since many pieces of code may contribute.The text was updated successfully, but these errors were encountered: