Skip to main content

display_value

Function display_value 

Source
pub(crate) fn display_value(v: &Value) -> String
Expand description

console 表示用(文字列はクォート無し、オブジェクトは簡易 JSON 風)。 structuredClone/JSON.stringify にあったのと同じ「循環参照で無限再帰」バグが ここにもあった。console.log(a)a.self = a)は特に日常的にありうる操作のため、 この no_std 環境でのクラッシュ/ハングとしては最も踏みやすいケースだった。祖先追跡を 追加し、循環を検出したら(ブラウザ devtools と同じ慣習で)[Circular] と表示する。