Did you know ... | Search Documentation: |
Pack logtalk -- logtalk-3.85.0/manuals/_sources/refman/predicates/logtalk_linter_hook_7.rst.txt |
.. This file is part of Logtalk https://logtalk.org/ SPDX-FileCopyrightText: 1998-2024 Paulo Moura <pmoura@logtalk.org> SPDX-License-Identifier: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
.. rst-class:: align-right
built-in predicate
.. index:: pair: logtalk_linter_hook/7; Built-in predicate .. _predicates_logtalk_linter_hook_7:
::
logtalk_linter_hook(Goal, Flag, File, Lines, Type, Entity, Warning)
Multifile user-defined predicate, supporting the definition of custom linter
warnings. Experimental. The Goal
argument can be a message sending goal,
Object::Message
, a call to a Prolog built-in predicate, or a call to a
module predicate, Module:Predicate
. The Flag
argument must be a
supported linter flag. The Warning
argument must be a valid core
message term. For a given Goal
, only the first successful call to this
predicate is considered.
::
logtalk_linter_hook(@callable, +atom, +atom, +pair(integer)
, +atom, @object_identifier, --callable) - zero_or_one
(none)
::
:- multifile(user::logtalk_linter_hook/7).
% warn about using list::append/3 to construct a list from an head and a tail
user::logtalk_linter_hook(
list::append(L1,L2,L)
, suspicious_calls,
File, Lines, Type, Entity,
suspicious_call(File, Lines, Type, Entity, list::append(L1,L2,L)
, [L=[Head|L2]])
) :-
nonvar(L1)
,
L1 = [Head].