@Override
public IReconciler getReconciler(ISourceViewer sourceViewer) {
if (reconciler == null && sourceViewer != null) {
reconciler = new MonoReconciler(new GoEditorReconcilingStrategy(editor), false);
reconciler.setDelay(500);
}
return reconciler;
}