mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-08 10:39:15 +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
|
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
|
in the (class) constructor and are constant from then on (same as final
|
||||||
fields in Java) }
|
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;
|
TCompilerModeSwitches = set of TCompilerModeSwitch;
|
||||||
const
|
const
|
||||||
@ -717,7 +718,8 @@ const
|
|||||||
'ISOUNARYMINUS',
|
'ISOUNARYMINUS',
|
||||||
'SYSTEMCODEPAGE',
|
'SYSTEMCODEPAGE',
|
||||||
'FINALFIELDS',
|
'FINALFIELDS',
|
||||||
'UNICODESTRINGS');
|
'UNICODESTRINGS',
|
||||||
|
'TYPEHELPERS');
|
||||||
|
|
||||||
// upper case
|
// upper case
|
||||||
PascalCompilerNames: array[TPascalCompiler] of shortstring=(
|
PascalCompilerNames: array[TPascalCompiler] of shortstring=(
|
||||||
|
Loading…
Reference in New Issue
Block a user