use of claw.tatsu.xcodeml.xnode.common.XtypeTable in project claw-compiler by C2SM-RCM.
the class XmlHelper method createXtypeTableFromString.
public static XtypeTable createXtypeTableFromString(String xml) {
Xnode n = XmlHelper.getElementFromString(xml);
assertNotNull(n);
return new XtypeTable(n);
}
Aggregations