Kyle Gobel - 104 - May 2, 2014

Is there anything built into SS to work with object graphs that are recursive, like to detect and not include the recursive parts or just make them null at some point instead of a stack overflow?  Talking about methods like ToJson<T>, Dump<T>, ect

SS.Text doesn’t support cyclical deps, you can ignore properties with any of the approaches on: http://stackoverflow.com/a/14859968/85785
Otherwise you can prevent StackOverflows by setting a JsConfig.MaxDepth.

Kyle Gobel:

awesome, just what I needed.  Thanks.

 No plan to support cyclical deps for speed reasons I’m assuming?

not being able to detect them is a design limitation of the static analysis approach.