fpc/tests/test/jvm/tjavalowercaseproc.java
Jonas Maebe b70e64dc67 * fixed some bugs in the camelCase conversion performed on the JVM target by
-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 -
2013-10-23 22:44:45 +00:00

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();
}
}