int contextColumn = calculateContextColumn(context);
String suggestRaml = digestSuggestRaml(topSection, bottomSection, contextColumn);
this.offset = suggestRaml.length();
if (offset == 0)
{
result.add(new DefaultSuggestion(RamlEmitter.VERSION, 0));
return result;
}
Yaml yamlParser = new Yaml();
NodeVisitor nodeVisitor = new NodeVisitor(this, new DefaultResourceLoader());
MappingNode rootNode = null;