summaryrefslogtreecommitdiff
path: root/compiler/globtype.pas
diff options
context:
space:
mode:
authorsvenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-05-10 14:04:45 +0000
committersvenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-05-10 14:04:45 +0000
commit3c06acd90413a511c357c60ecb523db4c6de6dbf (patch)
tree00890ddacd35d3e9c2deb37b200ecf64750112e2 /compiler/globtype.pas
parent40628435feadb689965ee67417532a42ec777c66 (diff)
downloadfpc-3c06acd90413a511c357c60ecb523db4c6de6dbf.tar.gz
+ add support for MultiHelpers modeswitch by Ryan Joseph for Mantis #35159
+ added tests git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@42026 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/globtype.pas')
-rw-r--r--compiler/globtype.pas6
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/globtype.pas b/compiler/globtype.pas
index 1da88ae881..cf89420035 100644
--- a/compiler/globtype.pas
+++ b/compiler/globtype.pas
@@ -481,7 +481,8 @@ interface
m_isolike_io, { I/O as it required by an ISO compatible compiler }
m_isolike_program_para, { program parameters as it required by an ISO compatible compiler }
m_isolike_mod, { mod operation as it is required by an iso compatible compiler }
- m_array_operators { use Delphi compatible array operators instead of custom ones ("+") }
+ m_array_operators, { use Delphi compatible array operators instead of custom ones ("+") }
+ m_multi_helpers { helpers can appear in multiple scopes simultaneously }
);
tmodeswitches = set of tmodeswitch;
@@ -670,7 +671,8 @@ interface
'ISOIO',
'ISOPROGRAMPARAS',
'ISOMOD',
- 'ARRAYOPERATORS'
+ 'ARRAYOPERATORS',
+ 'MULTIHELPERS'
);