mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-13 16:12:49 +01:00
-CTlowercaseprocstart
o convert all consecutive uppercase characters at the start to lowercase
instead of only the first one. Exception: if there is more than one
such character and the last one is followed by a lowercase character,
assume the last uppercase character belongs to the second word (like
in FPCIsGreat) and don't lowercase that one
+ test
git-svn-id: trunk@25845 -
18 lines
337 B
Java
18 lines
337 B
Java
public class tjavalowercaseproc {
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
org.freepascal.test.lcproc.tc c;
|
|
|
|
org.freepascal.test.lcproc.tlowercaseproc.doIt();
|
|
|
|
c = new org.freepascal.test.lcproc.tc();
|
|
c.methodName();
|
|
org.freepascal.test.lcproc.tc.classMethodName();
|
|
c.xToY();
|
|
c.prefixThingToTest();
|
|
c.rc64Encode();
|
|
}
|
|
|
|
}
|