summaryrefslogtreecommitdiff
path: root/elpa/irony-20220110.849/irony-diagnostics.el
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-06-07 08:23:47 -0400
committermattkae <mattkae@protonmail.com>2022-06-07 08:23:47 -0400
commitbd18a38c2898548a3664a9ddab9f79c84f2caf4a (patch)
tree95b9933376770381bd8859782ae763be81c2d72b /elpa/irony-20220110.849/irony-diagnostics.el
parentb07628dddf418d4f47b858e6c35fd3520fbaeed2 (diff)
parentef160dea332af4b4fe5e2717b962936c67e5fe9e (diff)
Merge conflict
Diffstat (limited to 'elpa/irony-20220110.849/irony-diagnostics.el')
-rw-r--r--elpa/irony-20220110.849/irony-diagnostics.el90
1 files changed, 0 insertions, 90 deletions
diff --git a/elpa/irony-20220110.849/irony-diagnostics.el b/elpa/irony-20220110.849/irony-diagnostics.el
deleted file mode 100644
index 76c268d..0000000
--- a/elpa/irony-20220110.849/irony-diagnostics.el
+++ /dev/null
@@ -1,90 +0,0 @@
-;;; irony-diagnostics.el --- irony-mode diagnostic reporting
-
-;; Copyright (C) 2014 Guillaume Papin
-
-;; Author: Guillaume Papin <guillaume.papin@epitech.eu>
-;; Keywords: c, convenience, tools
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; Interface libclang's "Diagnostic Reporting", see
-;; http://clang.llvm.org/doxygen/group__CINDEX__DIAG.html
-
-;;; Code:
-
-(require 'irony)
-(require 'irony-iotask)
-
-(eval-when-compile
- (require 'cl)) ;for lexical-let macro
-
-
-;;
-;; Irony Diagnostics Interface
-;;
-
-(defun irony-diagnostics-file (diagnostic)
- (nth 0 diagnostic))
-
-(defun irony-diagnostics-line (diagnostic)
- (nth 1 diagnostic))
-
-(defun irony-diagnostics-column (diagnostic)
- (nth 2 diagnostic))
-
-(defun irony-diagnostics-severity (diagnostic)
- (nth 4 diagnostic))
-
-(defun irony-diagnostics-message (diagnostic)
- (nth 5 diagnostic))
-
-(defun irony-diagnostics-async (callback)
- "Perform an asynchronous diagnostic request for the current
-buffer.
-
-CALLBACK is called with at least one argument, a symbol
-representing the status of the request. Depending on the status
-more argument are provided. Possible values are explained below:
-
-- success
-
- When quering the diagnostics work, the additional argument is a
- list of diagnostic object, diagnostics fields can be queried
- with the functions `irony-diagnostics-<xxx>'.
-
-- error
-
- Retrieving the diagnostics wasn't possible. A string explaining
- the reason is passed as a second argument.
-
-- cancelled
-
- Retrieving the diagnostics was cancelled, e.g: because the
- buffer has changed since the beginning of the request, and as
- such the diagnostics are considered no longer relevant. A
- reason string is passed as a second argument."
- (lexical-let ((cb callback))
- (irony--run-task-asynchronously
- (irony--diagnostics-task)
- (lambda (diagnostics-result)
- (condition-case err
- (funcall cb 'success (irony-iotask-result-get diagnostics-result))
- (error
- (funcall cb 'error (error-message-string err))))))))
-
-(provide 'irony-diagnostics)
-
-;;; irony-diagnostics.el ends here