Open radrow opened 2 years ago
Currently lambdas do not receive any names in the symbols field of the generated code. While this does not matter for normal development, it can be useful to identify them while in debug mode.
symbols
Proposal: fun#$(ParentFunName)#$(LineNumber)#$(ColumnNumber), eg
fun#$(ParentFunName)#$(LineNumber)#$(ColumnNumber)
namespace Ns = function funkcja() = () => ()
would give the lambda the name fun#.Ns.funkcja#2#23
fun#.Ns.funkcja#2#23
Currently lambdas do not receive any names in the
symbols
field of the generated code. While this does not matter for normal development, it can be useful to identify them while in debug mode.Proposal:
fun#$(ParentFunName)#$(LineNumber)#$(ColumnNumber)
, egwould give the lambda the name
fun#.Ns.funkcja#2#23