but I get a blank window when trying to load HTML generated with the --traced-values --html arguments. The browser console has an error:
Uncaught RangeError: 4194304 is not a valid code point
renderArray file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:846
renderValueUntraced file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:1047
renderValue file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:985
renderStruct file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:781
renderValueUntraced file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:1087
renderValue file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:985
renderStruct file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:781
renderValueUntraced file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:1087
renderValue file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:985
renderStruct file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:781
renderValueUntraced file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:1087
renderValue file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:985
renderStruct file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:781
renderValueUntraced file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:1087
renderValue file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:985
main file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:553
onload file:///home/kquick/work/DFAMS/daedalus/p6_cil.html:1
I believe it's trying to convert the value to a string, and a UInt32 might be a UTF-32 code point, but in this case, it's not a valid code point, thus this exception and with no error handling for this, the entire document is not rendered.
My specification contains:
offsets = Many 4 UInt32
. When I usedaedalus run
it decodes correctly and I'm seeing:but I get a blank window when trying to load HTML generated with the
--traced-values --html
arguments. The browser console has an error:I believe it's trying to convert the value to a string, and a UInt32 might be a UTF-32 code point, but in this case, it's not a valid code point, thus this exception and with no error handling for this, the entire document is not rendered.