mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-04 17:40:17 +02:00
Codetools: Allow {$MODESWITCH TYPEHELPERS}. Issue #25743, patch from Dennis Fehr.
git-svn-id: trunk@44514 -
This commit is contained in:
parent
32adb07f4c
commit
5df636d70f
@ -182,7 +182,8 @@ type
|
||||
cmsFinalFields, { allows declaring fields as "final", which means they must be initialised
|
||||
in the (class) constructor and are constant from then on (same as final
|
||||
fields in Java) }
|
||||
cmsDefault_unicodestring { ? see http://wiki.freepascal.org/FPC_JVM/Language }
|
||||
cmsDefault_unicodestring, { ? see http://wiki.freepascal.org/FPC_JVM/Language }
|
||||
cmsTypeHelpers
|
||||
);
|
||||
TCompilerModeSwitches = set of TCompilerModeSwitch;
|
||||
const
|
||||
@ -717,7 +718,8 @@ const
|
||||
'ISOUNARYMINUS',
|
||||
'SYSTEMCODEPAGE',
|
||||
'FINALFIELDS',
|
||||
'UNICODESTRINGS');
|
||||
'UNICODESTRINGS',
|
||||
'TYPEHELPERS');
|
||||
|
||||
// upper case
|
||||
PascalCompilerNames: array[TPascalCompiler] of shortstring=(
|
||||
|
Loading…
Reference in New Issue
Block a user