}
return currentTag;
}
public void expandTagSelection(IDocument doc, ITextSelection sel) {
CFMLPropertyManager propertyManager = new CFMLPropertyManager();
String dict = propertyManager.getCurrentDictionary(((IFileEditorInput) editor.getEditorInput()).getFile().getProject());
CFMLParser fCfmlParser = CFMLPlugin.newCFMLParser(dict);
ICFDocument cfd = (ICFDocument) doc;
CFMLSource cfmlSource = fCfmlParser.addCFMLSource(cfd.getCFDocument().getFilename(), cfd.get());
int offset = sel.getOffset();
ParserTag currentTag = getNextTagLeft(offset, cfmlSource);