mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 22:20:19 +02:00
+ write name of missing feature in error message
git-svn-id: trunk@29211 -
This commit is contained in:
parent
a9e1419ee3
commit
25e19f27a0
@ -704,7 +704,7 @@ parser_e_comparative_operator_return_boolean=03090_E_Comparative operator must r
|
|||||||
parser_e_only_virtual_methods_abstract=03091_E_Only virtual methods can be abstract
|
parser_e_only_virtual_methods_abstract=03091_E_Only virtual methods can be abstract
|
||||||
% You are declaring a method as abstract, when it is not declared to be
|
% You are declaring a method as abstract, when it is not declared to be
|
||||||
% virtual.
|
% virtual.
|
||||||
parser_f_unsupported_feature=03092_F_Use of unsupported feature!
|
parser_f_unsupported_feature=03092_F_Use of unsupported feature: "$1".
|
||||||
% You're trying to force the compiler into doing something it cannot do yet.
|
% You're trying to force the compiler into doing something it cannot do yet.
|
||||||
parser_e_mix_of_classes_and_objects=03093_E_The mix of different kind of objects (class, object, interface, etc) isn't allowed
|
parser_e_mix_of_classes_and_objects=03093_E_The mix of different kind of objects (class, object, interface, etc) isn't allowed
|
||||||
% You cannot derive \var{objects}, \var{classes}, \var{cppclasses} and \var{interfaces} intertwined. E.g.
|
% You cannot derive \var{objects}, \var{classes}, \var{cppclasses} and \var{interfaces} intertwined. E.g.
|
||||||
|
@ -994,7 +994,7 @@ const
|
|||||||
option_info=11024;
|
option_info=11024;
|
||||||
option_help_pages=11025;
|
option_help_pages=11025;
|
||||||
|
|
||||||
MsgTxtSize = 73915;
|
MsgTxtSize = 73921;
|
||||||
|
|
||||||
MsgIdxMax : array[1..20] of longint=(
|
MsgIdxMax : array[1..20] of longint=(
|
||||||
26,99,339,123,89,57,126,27,202,64,
|
26,99,339,123,89,57,126,27,202,64,
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -915,7 +915,7 @@ implementation
|
|||||||
read_var_decls([vd_threadvar])
|
read_var_decls([vd_threadvar])
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
Message(parser_f_unsupported_feature);
|
Message1(parser_f_unsupported_feature,featurestr[f_threading]);
|
||||||
read_var_decls([]);
|
read_var_decls([]);
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user