public void accept(@NotNull PsiElementVisitor visitor) {
   if (visitor instanceof DLanguageVisitor)
     ((DLanguageVisitor) visitor).visitDeleteExpression(this);
   else super.accept(visitor);
 }