* give an error for {$calling } (i.e., when a procedure directive is

missing)

git-svn-id: trunk@3193 -
This commit is contained in:
Jonas Maebe 2006-04-12 07:58:25 +00:00
parent 4d55b3aee3
commit 05540cad44
5 changed files with 209 additions and 200 deletions

View File

@ -1976,6 +1976,8 @@ end;
hs : string;
begin
result:=false;
if (hs = '') then
exit;
hs:=upper(s);
if (hs = 'DEFAULT') then
begin

View File

@ -839,8 +839,11 @@ parser_e_only_publishable_classes_can__be_published=03156_E_Only class which are
% are compiled in \var{\{\$M+\}} or which are derived from such a class. Normally
% such a class should be derived from TPersitent
parser_e_proc_directive_expected=03157_E_Procedure directive expected
% When declaring a procedure in a const block you used a ; after the
% procedure declaration after which a procedure directive must follow.
% This error is triggered when you have a \var{\{\$Calling\}} directive without
% a calling convention specified.
% It also happens when declaring a procedure in a const block and you
% used a ; after a procedure declaration which must be followed by a
% procedure directive.
% Correct declarations are:
% \begin{verbatim}
% const

View File

@ -678,7 +678,7 @@ const
option_info=11024;
option_help_pages=11025;
MsgTxtSize = 39829;
MsgTxtSize = 39835;
MsgIdxMax : array[1..20] of longint=(
24,75,219,60,62,47,100,22,135,60,

File diff suppressed because it is too large Load Diff

View File

@ -284,7 +284,12 @@ implementation
current_scanner.skipspace;
hs:=current_scanner.readid;
if not SetAktProcCall(hs,aktdefproccall) then
Message1(parser_w_unknown_proc_directive_ignored,hs);
begin
if (hs <> '') then
Message1(parser_w_unknown_proc_directive_ignored,hs)
else
Message(parser_e_proc_directive_expected);
end;
end;