* @param documentOffset
* @return
*/
public int getContext(int documentOffset) throws BadLocationException {
String text = get(0, documentOffset);
IParser parser = ParserFactory.createVerilogParser(text, null, getFile());
try {
parser.parse();
} catch (HdlParserException e) {
}
return parser.getContext();
}