| //==--- DiagnosticRefactoringKinds.td - refactoring diagnostics -----------===// |
| // |
| // The LLVM Compiler Infrastructure |
| // |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| // |
| //===----------------------------------------------------------------------===// |
| |
| //===----------------------------------------------------------------------===// |
| // Refactoring Diagnostics |
| //===----------------------------------------------------------------------===// |
| |
| let Component = "Refactoring" in { |
| |
| let CategoryName = "Refactoring Invocation Issue" in { |
| |
| def err_refactor_no_selection : Error<"refactoring action can't be initiated " |
| "without a selection">; |
| def err_refactor_selection_no_symbol : Error<"there is no symbol at the given " |
| "location">; |
| def err_refactor_selection_invalid_ast : Error<"the provided selection does " |
| "not overlap with the AST nodes of interest">; |
| |
| def err_refactor_code_outside_of_function : Error<"the selected code is not a " |
| "part of a function's / method's body">; |
| def err_refactor_extract_simple_expression : Error<"the selected expression " |
| "is too simple to extract">; |
| def err_refactor_extract_prohibited_expression : Error<"the selected " |
| "expression can't be extracted">; |
| |
| } |
| |
| } // end of Refactoring diagnostics |