1
+ /*
2
+ * Copyright 2012-2014 Sergey Ignatov
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ package org .intellij .erlang .inspection ;
18
+
19
+ import com .intellij .codeInspection .ProblemHighlightType ;
20
+ import com .intellij .codeInspection .ProblemsHolder ;
21
+ import org .intellij .erlang .bif .ErlangBifDescriptor ;
22
+ import org .intellij .erlang .bif .ErlangBifTable ;
23
+ import org .intellij .erlang .psi .ErlangFile ;
24
+ import org .intellij .erlang .psi .ErlangImportFunction ;
25
+ import org .intellij .erlang .psi .impl .ErlangPsiImplUtil ;
26
+ import org .intellij .erlang .quickfixes .ErlangRemoveFunctionFromImportFixBase ;
27
+ import org .intellij .erlang .sdk .ErlangSdkRelease ;
28
+ import org .intellij .erlang .sdk .ErlangSdkType ;
29
+ import org .jetbrains .annotations .NotNull ;
30
+
31
+ public class ErlangImportDirectiveOverridesAutoimportedBifInspection extends ErlangInspectionBase {
32
+ @ Override
33
+ protected boolean canRunOn (@ NotNull ErlangFile file ) {
34
+ ErlangSdkRelease release = ErlangSdkType .getRelease (file );
35
+ return release == null || release .isNewerThan (ErlangSdkRelease .V_R14A );
36
+ }
37
+
38
+ protected void checkFile (@ NotNull ErlangFile file , @ NotNull ProblemsHolder problemsHolder ) {
39
+ for (ErlangImportFunction importFunction : file .getImportedFunctions ()) {
40
+ ErlangBifDescriptor bifDescriptor = ErlangBifTable .getBif (
41
+ "erlang" ,
42
+ ErlangPsiImplUtil .getName (importFunction .getQAtom ()),
43
+ ErlangPsiImplUtil .getArity (importFunction .getInteger ()));
44
+ if (bifDescriptor == null || !bifDescriptor .isAutoImported ()) continue ;
45
+ problemsHolder .registerProblem (importFunction ,
46
+ "Import directive overrides pre R14 auto-imported BIF '" + ErlangPsiImplUtil .createFunctionPresentation (importFunction ) + "'" ,
47
+ ProblemHighlightType .GENERIC_ERROR_OR_WARNING ,
48
+ new ErlangRemoveFunctionFromImportFixBase .ErlangRemoveFunctionFromImportFix ());
49
+ }
50
+ }
51
+
52
+ }
0 commit comments