Hi everybody,
In my old application, I loaded a xml string into a workspace like this:
var dom = Blockly.Xml.textToDom(workspaceXml);
Blockly.Xml.domToWorkspace(dom, my_workspace);
However when I run this in the latest Blockly version, I get the error "Blockly.Xml.textToDom is not a function".
It looks like all the other functions in this class require a dom input parameter:

So I am not sure whether textToDom has been moved to some other class, or do I need to use another approach to create a dom from the xml?
Thanks!!
Bart