A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / parser / Scanner.java
index b2ae4c6..6866e27 100644 (file)
@@ -20,17 +20,19 @@ import net.sourceforge.phpdt.internal.compiler.env.ICompilationUnit;
 
 public class Scanner implements IScanner, ITerminalSymbols {
        /*
-        * APIs ares - getNextToken() which return the current type of the token (this
-        * value is not memorized by the scanner) - getCurrentTokenSource() which
-        * provides with the token "REAL" source (aka all unicode have been
-        * transformed into a correct char) - sourceStart gives the position into the
-        * stream - currentPosition-1 gives the sourceEnd position into the stream
+        * APIs ares - getNextToken() which return the current type of the token
+        * (this value is not memorized by the scanner) - getCurrentTokenSource()
+        * which provides with the token "REAL" source (aka all unicode have been
+        * transformed into a correct char) - sourceStart gives the position into
+        * the stream - currentPosition-1 gives the sourceEnd position into the
+        * stream
         */
        // 1.4 feature
        // private boolean assertMode;
        public boolean useAssertAsAnIndentifier = false;
 
-       // flag indicating if processed source contains occurrences of keyword assert
+       // flag indicating if processed source contains occurrences of keyword
+       // assert
        public boolean containsAssertKeyword = false;
 
        public boolean recordLineSeparator;
@@ -40,10 +42,12 @@ public class Scanner implements IScanner, ITerminalSymbols {
        public boolean phpMode = false;
 
        /**
-        * This token is set to TokenNameecho if a short tag block begins (i.e. >?= ... )
-        * Directly after the "=" character the getNextToken() method returns TokenNameINLINE_HTML
-        * In the next call to the getNextToken() method the value of fFillerToken (==TokenNameecho) is returned
-        *
+        * This token is set to TokenNameecho if a short tag block begins (i.e.
+        * >?= ... ) Directly after the "=" character the
+        * getNextToken() method returns TokenNameINLINE_HTML In the next call to
+        * the getNextToken() method the value of fFillerToken (==TokenNameecho) is
+        * returned
+        * 
         */
        int fFillerToken = TokenNameEOF;
 
@@ -122,25 +126,39 @@ public class Scanner implements IScanner, ITerminalSymbols {
        public static final String INVALID_CHAR_IN_STRING = "Invalid_Char_In_String"; //$NON-NLS-1$
 
        // ----------------optimized identifier managment------------------
-       static final char[] charArray_a = new char[] { 'a' }, charArray_b = new char[] { 'b' }, charArray_c = new char[] { 'c' },
-                       charArray_d = new char[] { 'd' }, charArray_e = new char[] { 'e' }, charArray_f = new char[] { 'f' },
-                       charArray_g = new char[] { 'g' }, charArray_h = new char[] { 'h' }, charArray_i = new char[] { 'i' },
-                       charArray_j = new char[] { 'j' }, charArray_k = new char[] { 'k' }, charArray_l = new char[] { 'l' },
-                       charArray_m = new char[] { 'm' }, charArray_n = new char[] { 'n' }, charArray_o = new char[] { 'o' },
-                       charArray_p = new char[] { 'p' }, charArray_q = new char[] { 'q' }, charArray_r = new char[] { 'r' },
-                       charArray_s = new char[] { 's' }, charArray_t = new char[] { 't' }, charArray_u = new char[] { 'u' },
-                       charArray_v = new char[] { 'v' }, charArray_w = new char[] { 'w' }, charArray_x = new char[] { 'x' },
-                       charArray_y = new char[] { 'y' }, charArray_z = new char[] { 'z' };
-
-       static final char[] charArray_va = new char[] { '$', 'a' }, charArray_vb = new char[] { '$', 'b' }, charArray_vc = new char[] {
-                       '$', 'c' }, charArray_vd = new char[] { '$', 'd' }, charArray_ve = new char[] { '$', 'e' }, charArray_vf = new char[] { '$',
-                       'f' }, charArray_vg = new char[] { '$', 'g' }, charArray_vh = new char[] { '$', 'h' },
-                       charArray_vi = new char[] { '$', 'i' }, charArray_vj = new char[] { '$', 'j' }, charArray_vk = new char[] { '$', 'k' },
-                       charArray_vl = new char[] { '$', 'l' }, charArray_vm = new char[] { '$', 'm' }, charArray_vn = new char[] { '$', 'n' },
-                       charArray_vo = new char[] { '$', 'o' }, charArray_vp = new char[] { '$', 'p' }, charArray_vq = new char[] { '$', 'q' },
-                       charArray_vr = new char[] { '$', 'r' }, charArray_vs = new char[] { '$', 's' }, charArray_vt = new char[] { '$', 't' },
-                       charArray_vu = new char[] { '$', 'u' }, charArray_vv = new char[] { '$', 'v' }, charArray_vw = new char[] { '$', 'w' },
-                       charArray_vx = new char[] { '$', 'x' }, charArray_vy = new char[] { '$', 'y' }, charArray_vz = new char[] { '$', 'z' };
+       static final char[] charArray_a = new char[] { 'a' },
+                       charArray_b = new char[] { 'b' }, charArray_c = new char[] { 'c' },
+                       charArray_d = new char[] { 'd' }, charArray_e = new char[] { 'e' },
+                       charArray_f = new char[] { 'f' }, charArray_g = new char[] { 'g' },
+                       charArray_h = new char[] { 'h' }, charArray_i = new char[] { 'i' },
+                       charArray_j = new char[] { 'j' }, charArray_k = new char[] { 'k' },
+                       charArray_l = new char[] { 'l' }, charArray_m = new char[] { 'm' },
+                       charArray_n = new char[] { 'n' }, charArray_o = new char[] { 'o' },
+                       charArray_p = new char[] { 'p' }, charArray_q = new char[] { 'q' },
+                       charArray_r = new char[] { 'r' }, charArray_s = new char[] { 's' },
+                       charArray_t = new char[] { 't' }, charArray_u = new char[] { 'u' },
+                       charArray_v = new char[] { 'v' }, charArray_w = new char[] { 'w' },
+                       charArray_x = new char[] { 'x' }, charArray_y = new char[] { 'y' },
+                       charArray_z = new char[] { 'z' };
+
+       static final char[] charArray_va = new char[] { '$', 'a' },
+                       charArray_vb = new char[] { '$', 'b' }, charArray_vc = new char[] {
+                                       '$', 'c' }, charArray_vd = new char[] { '$', 'd' },
+                       charArray_ve = new char[] { '$', 'e' }, charArray_vf = new char[] {
+                                       '$', 'f' }, charArray_vg = new char[] { '$', 'g' },
+                       charArray_vh = new char[] { '$', 'h' }, charArray_vi = new char[] {
+                                       '$', 'i' }, charArray_vj = new char[] { '$', 'j' },
+                       charArray_vk = new char[] { '$', 'k' }, charArray_vl = new char[] {
+                                       '$', 'l' }, charArray_vm = new char[] { '$', 'm' },
+                       charArray_vn = new char[] { '$', 'n' }, charArray_vo = new char[] {
+                                       '$', 'o' }, charArray_vp = new char[] { '$', 'p' },
+                       charArray_vq = new char[] { '$', 'q' }, charArray_vr = new char[] {
+                                       '$', 'r' }, charArray_vs = new char[] { '$', 's' },
+                       charArray_vt = new char[] { '$', 't' }, charArray_vu = new char[] {
+                                       '$', 'u' }, charArray_vv = new char[] { '$', 'v' },
+                       charArray_vw = new char[] { '$', 'w' }, charArray_vx = new char[] {
+                                       '$', 'x' }, charArray_vy = new char[] { '$', 'y' },
+                       charArray_vz = new char[] { '$', 'z' };
 
        public final static int MAX_OBVIOUS = 256;
 
@@ -173,7 +191,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                ObviousIdentCharNatures[12] = C_SPACE; // \ u000c: FORM FEED
                ObviousIdentCharNatures[13] = C_SPACE; // \ u000d: CARRIAGE RETURN
                ObviousIdentCharNatures[32] = C_SPACE; // \ u0020: SPACE
-               ObviousIdentCharNatures[9] = C_SPACE; // \ u0009: HORIZONTAL TABULATION
+               ObviousIdentCharNatures[9] = C_SPACE; // \ u0009: HORIZONTAL
+                                                                                               // TABULATION
 
                ObviousIdentCharNatures['.'] = C_SEPARATOR;
                ObviousIdentCharNatures[':'] = C_SEPARATOR;
@@ -203,7 +222,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                ObviousIdentCharNatures['\''] = C_SEPARATOR;
        }
 
-       static final char[] initCharArray = new char[] { '\u0000', '\u0000', '\u0000', '\u0000', '\u0000', '\u0000' };
+       static final char[] initCharArray = new char[] { '\u0000', '\u0000',
+                       '\u0000', '\u0000', '\u0000', '\u0000' };
 
        static final int TableSize = 30, InternalTableSize = 6;
 
@@ -246,7 +266,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                }
        }
 
-       static int newEntry2 = 0, newEntry3 = 0, newEntry4 = 0, newEntry5 = 0, newEntry6 = 0;
+       static int newEntry2 = 0, newEntry3 = 0, newEntry4 = 0, newEntry5 = 0,
+                       newEntry6 = 0;
 
        public static final int RoundBracket = 0;
 
@@ -280,26 +301,28 @@ public class Scanner implements IScanner, ITerminalSymbols {
        public ICompilationUnit compilationUnit = null;
 
        /**
-        * Determines if the specified character is permissible as the first character
-        * in a PHP identifier or variable
-        *
+        * Determines if the specified character is permissible as the first
+        * character in a PHP identifier or variable
+        * 
         * The '$' character for PHP variables is regarded as a correct first
         * character !
-        *
+        * 
         */
        public static boolean isPHPIdentOrVarStart(char ch) {
                if (ch < MAX_OBVIOUS) {
-                       return ObviousIdentCharNatures[ch] == C_LETTER || ObviousIdentCharNatures[ch] == C_DOLLAR;
+                       return ObviousIdentCharNatures[ch] == C_LETTER
+                                       || ObviousIdentCharNatures[ch] == C_DOLLAR;
                }
                return false;
-               // return Character.isLetter(ch) || (ch == '$') || (ch == '_') || (0x7F <=
+               // return Character.isLetter(ch) || (ch == '$') || (ch == '_') || (0x7F
+               // <=
                // ch && ch <= 0xFF);
        }
 
        /**
-        * Determines if the specified character is permissible as the first character
-        * in a PHP identifier.
-        *
+        * Determines if the specified character is permissible as the first
+        * character in a PHP identifier.
+        * 
         * The '$' character for PHP variables isn't regarded as the first character !
         */
        public static boolean isPHPIdentifierStart(char ch) {
@@ -317,16 +340,19 @@ public class Scanner implements IScanner, ITerminalSymbols {
         */
        public static boolean isPHPIdentifierPart(char ch) {
                if (ch < MAX_OBVIOUS) {
-                       return ObviousIdentCharNatures[ch] == C_LETTER || ObviousIdentCharNatures[ch] == C_DIGIT;
+                       return ObviousIdentCharNatures[ch] == C_LETTER
+                                       || ObviousIdentCharNatures[ch] == C_DIGIT;
                }
                return false;
-               // return Character.isLetterOrDigit(ch) || (ch == '_') || (0x7F <= ch && ch
+               // return Character.isLetterOrDigit(ch) || (ch == '_') || (0x7F <= ch &&
+               // ch
                // <= 0xFF);
        }
 
        public static boolean isSQLIdentifierPart(char ch) {
                if (ch < MAX_OBVIOUS) {
-                       return ObviousIdentCharNatures[ch] == C_LETTER || ObviousIdentCharNatures[ch] == C_DIGIT;
+                       return ObviousIdentCharNatures[ch] == C_LETTER
+                                       || ObviousIdentCharNatures[ch] == C_DIGIT;
                }
                return false;
        }
@@ -341,7 +367,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                // return the token REAL source (aka unicodes are precomputed)
                char[] result;
                // if (withoutUnicodePtr != 0)
-               // //0 is used as a fast test flag so the real first char is in position 1
+               // //0 is used as a fast test flag so the real first char is in position
+               // 1
                // System.arraycopy(
                // withoutUnicodeBuffer,
                // 1,
@@ -365,7 +392,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        return optimizedCurrentTokenSource6();
                }
                // no optimization
-               System.arraycopy(source, startPosition, result = new char[length], 0, length);
+               System.arraycopy(source, startPosition, result = new char[length], 0,
+                               length);
                // }
                return result;
        }
@@ -378,7 +406,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                // Return the token REAL source (aka unicodes are precomputed)
                char[] result;
                // if (withoutUnicodePtr != 0)
-               // // 0 is used as a fast test flag so the real first char is in position 1
+               // // 0 is used as a fast test flag so the real first char is in
+               // position 1
                // System.arraycopy(
                // withoutUnicodeBuffer,
                // 1,
@@ -387,7 +416,9 @@ public class Scanner implements IScanner, ITerminalSymbols {
                // withoutUnicodePtr);
                // else {
                int length;
-               System.arraycopy(source, startPosition, result = new char[length = currentPosition - startPosition], 0, length);
+               System.arraycopy(source, startPosition,
+                               result = new char[length = currentPosition - startPosition], 0,
+                               length);
                // }
                return result;
        }
@@ -396,7 +427,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                // Return the token REAL source (aka unicodes are precomputed)
                char[] result;
                // if (withoutUnicodePtr != 0)
-               // // 0 is used as a fast test flag so the real first char is in position 1
+               // // 0 is used as a fast test flag so the real first char is in
+               // position 1
                // System.arraycopy(
                // withoutUnicodeBuffer,
                // 1,
@@ -405,7 +437,9 @@ public class Scanner implements IScanner, ITerminalSymbols {
                // withoutUnicodePtr);
                // else {
                int length;
-               System.arraycopy(source, startPos, result = new char[length = currentPosition - startPos], 0, length);
+               System.arraycopy(source, startPos,
+                               result = new char[length = currentPosition - startPos], 0,
+                               length);
                // }
                return result;
        }
@@ -415,13 +449,17 @@ public class Scanner implements IScanner, ITerminalSymbols {
                // REMOVE the two " that are at the beginning and the end.
                char[] result;
                if (withoutUnicodePtr != 0)
-                       // 0 is used as a fast test flag so the real first char is in position 1
+                       // 0 is used as a fast test flag so the real first char is in
+                       // position 1
                        System.arraycopy(withoutUnicodeBuffer, 2,
-                       // 2 is 1 (real start) + 1 (to jump over the ")
-                                       result = new char[withoutUnicodePtr - 2], 0, withoutUnicodePtr - 2);
+                                       // 2 is 1 (real start) + 1 (to jump over the ")
+                                       result = new char[withoutUnicodePtr - 2], 0,
+                                       withoutUnicodePtr - 2);
                else {
                        int length;
-                       System.arraycopy(source, startPosition + 1, result = new char[length = currentPosition - startPosition - 2], 0, length);
+                       System.arraycopy(source, startPosition + 1,
+                                       result = new char[length = currentPosition - startPosition
+                                                       - 2], 0, length);
                }
                return result;
        }
@@ -441,7 +479,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
        public final char[] getRawTokenSourceEnd() {
                int length = this.eofPosition - this.currentPosition - 1;
                char[] sourceEnd = new char[length];
-               System.arraycopy(this.source, this.currentPosition, sourceEnd, 0, length);
+               System.arraycopy(this.source, this.currentPosition, sourceEnd, 0,
+                               length);
                return sourceEnd;
        }
 
@@ -461,7 +500,10 @@ public class Scanner implements IScanner, ITerminalSymbols {
                }
                char[] result;
                int length;
-               System.arraycopy(source, startPosition + 1, result = new char[length = currentPosition - startPosition - 2], 0, length);
+               System
+                               .arraycopy(source, startPosition + 1,
+                                               result = new char[length = currentPosition
+                                                               - startPosition - 2], 0, length);
                // }
                return result;
        }
@@ -470,17 +512,20 @@ public class Scanner implements IScanner, ITerminalSymbols {
                // Return the token REAL source (aka unicodes are precomputed)
                char[] result;
                int length;
-               System.arraycopy(source, startPos + 1, result = new char[length = currentPosition - startPos - 2], 0, length);
+               System.arraycopy(source, startPos + 1,
+                               result = new char[length = currentPosition - startPos - 2], 0,
+                               length);
                // }
                return result;
        }
 
        /*
-        * Search the source position corresponding to the end of a given line number
-        *
+        * Search the source position corresponding to the end of a given line
+        * number
+        * 
         * Line numbers are 1-based, and relative to the scanner initialPosition.
         * Character positions are 0-based.
-        *
+        * 
         * In case the given line number is inconsistent, answers -1.
         */
        public final int getLineEnd(int lineNumber) {
@@ -499,12 +544,12 @@ public class Scanner implements IScanner, ITerminalSymbols {
        /**
         * Search the source position corresponding to the beginning of a given line
         * number
-        *
+        * 
         * Line numbers are 1-based, and relative to the scanner initialPosition.
         * Character positions are 0-based.
-        *
+        * 
         * e.g. getLineStart(1) --> 0 i.e. first line starts at character 0.
-        *
+        * 
         * In case the given line number is inconsistent, answers -1.
         */
        public final int getLineStart(int lineNumber) {
@@ -545,13 +590,17 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // unicodeSize++;
                        // }
                        //
-                       // if (((c1 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // if (((c1 = Character.getNumericValue(source[currentPosition++]))
+                       // > 15
                        // || c1 < 0)
-                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c2 < 0)
-                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c3 < 0)
-                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c4 < 0)) {
                        // currentPosition = temp;
                        // return false;
@@ -567,7 +616,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // //need the unicode buffer
                        // if (withoutUnicodePtr == 0) {
                        // //buffer all the entries that have been left aside....
-                       // withoutUnicodePtr = currentPosition - unicodeSize - startPosition;
+                       // withoutUnicodePtr = currentPosition - unicodeSize -
+                       // startPosition;
                        // System.arraycopy(
                        // source,
                        // startPosition,
@@ -624,13 +674,17 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // unicodeSize++;
                        // }
                        //
-                       // if (((c1 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // if (((c1 = Character.getNumericValue(source[currentPosition++]))
+                       // > 15
                        // || c1 < 0)
-                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c2 < 0)
-                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c3 < 0)
-                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c4 < 0)) {
                        // currentPosition = temp;
                        // return 2;
@@ -649,7 +703,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // //need the unicode buffer
                        // if (withoutUnicodePtr == 0) {
                        // //buffer all the entries that have been left aside....
-                       // withoutUnicodePtr = currentPosition - unicodeSize - startPosition;
+                       // withoutUnicodePtr = currentPosition - unicodeSize -
+                       // startPosition;
                        // System.arraycopy(
                        // source,
                        // startPosition,
@@ -704,13 +759,17 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // unicodeSize++;
                        // }
                        //
-                       // if (((c1 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // if (((c1 = Character.getNumericValue(source[currentPosition++]))
+                       // > 15
                        // || c1 < 0)
-                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c2 < 0)
-                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c3 < 0)
-                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c4 < 0)) {
                        // currentPosition = temp;
                        // return false;
@@ -725,7 +784,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // //need the unicode buffer
                        // if (withoutUnicodePtr == 0) {
                        // //buffer all the entries that have been left aside....
-                       // withoutUnicodePtr = currentPosition - unicodeSize - startPosition;
+                       // withoutUnicodePtr = currentPosition - unicodeSize -
+                       // startPosition;
                        // System.arraycopy(
                        // source,
                        // startPosition,
@@ -759,7 +819,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                // internal values
                // At the end of this method currentCharacter holds the new visited char
                // and currentPosition points right next after it
-               // Both previous lines are true if the currentCharacter is a digit base on
+               // Both previous lines are true if the currentCharacter is a digit base
+               // on
                // radix
                // On false, no side effect has occured.
                // ALL getNextChar.... ARE OPTIMIZED COPIES
@@ -777,13 +838,17 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // unicodeSize++;
                        // }
                        //
-                       // if (((c1 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // if (((c1 = Character.getNumericValue(source[currentPosition++]))
+                       // > 15
                        // || c1 < 0)
-                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c2 < 0)
-                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c3 < 0)
-                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c4 < 0)) {
                        // currentPosition = temp;
                        // return false;
@@ -798,7 +863,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // //need the unicode buffer
                        // if (withoutUnicodePtr == 0) {
                        // //buffer all the entries that have been left aside....
-                       // withoutUnicodePtr = currentPosition - unicodeSize - startPosition;
+                       // withoutUnicodePtr = currentPosition - unicodeSize -
+                       // startPosition;
                        // System.arraycopy(
                        // source,
                        // startPosition,
@@ -850,13 +916,17 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // unicodeSize++;
                        // }
                        //
-                       // if (((c1 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // if (((c1 = Character.getNumericValue(source[currentPosition++]))
+                       // > 15
                        // || c1 < 0)
-                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c2 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c2 < 0)
-                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c3 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c3 < 0)
-                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) > 15
+                       // || ((c4 = Character.getNumericValue(source[currentPosition++])) >
+                       // 15
                        // || c4 < 0)) {
                        // currentPosition = temp;
                        // return false;
@@ -871,7 +941,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // //need the unicode buffer
                        // if (withoutUnicodePtr == 0) {
                        // //buffer all the entries that have been left aside....
-                       // withoutUnicodePtr = currentPosition - unicodeSize - startPosition;
+                       // withoutUnicodePtr = currentPosition - unicodeSize -
+                       // startPosition;
                        // System.arraycopy(
                        // source,
                        // startPosition,
@@ -920,19 +991,23 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                switch (data.length) {
                                case 3:
                                        // int
-                                       if ((data[index] == 'i') && (data[++index] == 'n') && (data[++index] == 't')) {
+                                       if ((data[index] == 'i') && (data[++index] == 'n')
+                                                       && (data[++index] == 't')) {
                                                found = true;
                                                tempToken = TokenNameintCAST;
                                        }
                                        break;
                                case 4:
                                        // bool real
-                                       if ((data[index] == 'b') && (data[++index] == 'o') && (data[++index] == 'o') && (data[++index] == 'l')) {
+                                       if ((data[index] == 'b') && (data[++index] == 'o')
+                                                       && (data[++index] == 'o') && (data[++index] == 'l')) {
                                                found = true;
                                                tempToken = TokenNameboolCAST;
                                        } else {
                                                index = 0;
-                                               if ((data[index] == 'r') && (data[++index] == 'e') && (data[++index] == 'a') && (data[++index] == 'l')) {
+                                               if ((data[index] == 'r') && (data[++index] == 'e')
+                                                               && (data[++index] == 'a')
+                                                               && (data[++index] == 'l')) {
                                                        found = true;
                                                        tempToken = TokenNamedoubleCAST;
                                                }
@@ -940,19 +1015,24 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                        break;
                                case 5:
                                        // array unset float
-                                       if ((data[index] == 'a') && (data[++index] == 'r') && (data[++index] == 'r') && (data[++index] == 'a')
+                                       if ((data[index] == 'a') && (data[++index] == 'r')
+                                                       && (data[++index] == 'r') && (data[++index] == 'a')
                                                        && (data[++index] == 'y')) {
                                                found = true;
                                                tempToken = TokenNamearrayCAST;
                                        } else {
                                                index = 0;
-                                               if ((data[index] == 'u') && (data[++index] == 'n') && (data[++index] == 's') && (data[++index] == 'e')
+                                               if ((data[index] == 'u') && (data[++index] == 'n')
+                                                               && (data[++index] == 's')
+                                                               && (data[++index] == 'e')
                                                                && (data[++index] == 't')) {
                                                        found = true;
                                                        tempToken = TokenNameunsetCAST;
                                                } else {
                                                        index = 0;
-                                                       if ((data[index] == 'f') && (data[++index] == 'l') && (data[++index] == 'o') && (data[++index] == 'a')
+                                                       if ((data[index] == 'f') && (data[++index] == 'l')
+                                                                       && (data[++index] == 'o')
+                                                                       && (data[++index] == 'a')
                                                                        && (data[++index] == 't')) {
                                                                found = true;
                                                                tempToken = TokenNamedoubleCAST;
@@ -962,20 +1042,27 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                        break;
                                case 6:
                                        // object string double
-                                       if ((data[index] == 'o') && (data[++index] == 'b') && (data[++index] == 'j') && (data[++index] == 'e')
+                                       if ((data[index] == 'o') && (data[++index] == 'b')
+                                                       && (data[++index] == 'j') && (data[++index] == 'e')
                                                        && (data[++index] == 'c') && (data[++index] == 't')) {
                                                found = true;
                                                tempToken = TokenNameobjectCAST;
                                        } else {
                                                index = 0;
-                                               if ((data[index] == 's') && (data[++index] == 't') && (data[++index] == 'r') && (data[++index] == 'i')
-                                                               && (data[++index] == 'n') && (data[++index] == 'g')) {
+                                               if ((data[index] == 's') && (data[++index] == 't')
+                                                               && (data[++index] == 'r')
+                                                               && (data[++index] == 'i')
+                                                               && (data[++index] == 'n')
+                                                               && (data[++index] == 'g')) {
                                                        found = true;
                                                        tempToken = TokenNamestringCAST;
                                                } else {
                                                        index = 0;
-                                                       if ((data[index] == 'd') && (data[++index] == 'o') && (data[++index] == 'u') && (data[++index] == 'b')
-                                                                       && (data[++index] == 'l') && (data[++index] == 'e')) {
+                                                       if ((data[index] == 'd') && (data[++index] == 'o')
+                                                                       && (data[++index] == 'u')
+                                                                       && (data[++index] == 'b')
+                                                                       && (data[++index] == 'l')
+                                                                       && (data[++index] == 'e')) {
                                                                found = true;
                                                                tempToken = TokenNamedoubleCAST;
                                                        }
@@ -984,14 +1071,20 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                        break;
                                case 7:
                                        // boolean integer
-                                       if ((data[index] == 'b') && (data[++index] == 'o') && (data[++index] == 'o') && (data[++index] == 'l')
-                                                       && (data[++index] == 'e') && (data[++index] == 'a') && (data[++index] == 'n')) {
+                                       if ((data[index] == 'b') && (data[++index] == 'o')
+                                                       && (data[++index] == 'o') && (data[++index] == 'l')
+                                                       && (data[++index] == 'e') && (data[++index] == 'a')
+                                                       && (data[++index] == 'n')) {
                                                found = true;
                                                tempToken = TokenNameboolCAST;
                                        } else {
                                                index = 0;
-                                               if ((data[index] == 'i') && (data[++index] == 'n') && (data[++index] == 't') && (data[++index] == 'e')
-                                                               && (data[++index] == 'g') && (data[++index] == 'e') && (data[++index] == 'r')) {
+                                               if ((data[index] == 'i') && (data[++index] == 'n')
+                                                               && (data[++index] == 't')
+                                                               && (data[++index] == 'e')
+                                                               && (data[++index] == 'g')
+                                                               && (data[++index] == 'e')
+                                                               && (data[++index] == 'r')) {
                                                        found = true;
                                                        tempToken = TokenNameintCAST;
                                                }
@@ -1032,7 +1125,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                /** ** in PHP \r and \n are valid in string literals *** */
                                // if ((currentCharacter == '\n')
                                // || (currentCharacter == '\r')) {
-                               // // relocate if finding another quote fairly close: thus unicode
+                               // // relocate if finding another quote fairly close: thus
+                               // unicode
                                // '/u000D' will be fully consumed
                                // for (int lookAhead = 0; lookAhead < 50; lookAhead++) {
                                // if (currentPosition + lookAhead == source.length)
@@ -1049,23 +1143,28 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                if (currentCharacter == '\\') {
                                        int escapeSize = currentPosition;
                                        boolean backSlashAsUnicodeInString = unicodeAsBackSlash;
-                                       // scanEscapeCharacter make a side effect on this value and we need
+                                       // scanEscapeCharacter make a side effect on this value and
+                                       // we need
                                        // the previous value few lines down this one
                                        scanDoubleQuotedEscapeCharacter();
                                        escapeSize = currentPosition - escapeSize;
                                        if (withoutUnicodePtr == 0) {
                                                // buffer all the entries that have been left aside....
-                                               withoutUnicodePtr = currentPosition - escapeSize - 1 - startPosition;
-                                               System.arraycopy(source, startPosition, withoutUnicodeBuffer, 1, withoutUnicodePtr);
+                                               withoutUnicodePtr = currentPosition - escapeSize - 1
+                                                               - startPosition;
+                                               System.arraycopy(source, startPosition,
+                                                               withoutUnicodeBuffer, 1, withoutUnicodePtr);
                                                withoutUnicodeBuffer[++withoutUnicodePtr] = currentCharacter;
                                        } else { // overwrite the / in the buffer
                                                withoutUnicodeBuffer[withoutUnicodePtr] = currentCharacter;
-                                               if (backSlashAsUnicodeInString) { // there are TWO \ in the stream
+                                               if (backSlashAsUnicodeInString) { // there are TWO \
+                                                                                                                       // in the stream
                                                        // where only one is correct
                                                        withoutUnicodePtr--;
                                                }
                                        }
-                               } else if ((currentCharacter == '\r') || (currentCharacter == '\n')) {
+                               } else if ((currentCharacter == '\r')
+                                               || (currentCharacter == '\n')) {
                                        if (recordLineSeparator) {
                                                pushLineSeparator();
                                        }
@@ -1103,14 +1202,16 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        }
                        throw e; // rethrow
                }
-               if (checkNonExternalizedStringLiterals) { // check for presence of NLS tags
+               if (checkNonExternalizedStringLiterals) { // check for presence of NLS
+                                                                                                       // tags
                        // //$NON-NLS-?$ where ? is an
                        // int.
                        if (currentLine == null) {
                                currentLine = new NLSLine();
                                lines.add(currentLine);
                        }
-                       currentLine.add(new StringLiteral(getCurrentTokenSourceString(), startPosition, currentPosition - 1));
+                       currentLine.add(new StringLiteral(getCurrentTokenSourceString(),
+                                       startPosition, currentPosition - 1));
                }
        }
 
@@ -1132,7 +1233,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                /** ** in PHP \r and \n are valid in string literals *** */
                                // if ((currentCharacter == '\n')
                                // || (currentCharacter == '\r')) {
-                               // // relocate if finding another quote fairly close: thus unicode
+                               // // relocate if finding another quote fairly close: thus
+                               // unicode
                                // '/u000D' will be fully consumed
                                // for (int lookAhead = 0; lookAhead < 50; lookAhead++) {
                                // if (currentPosition + lookAhead == source.length)
@@ -1149,23 +1251,28 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                if (currentCharacter == '\\') {
                                        int escapeSize = currentPosition;
                                        boolean backSlashAsUnicodeInString = unicodeAsBackSlash;
-                                       // scanEscapeCharacter make a side effect on this value and we need
+                                       // scanEscapeCharacter make a side effect on this value and
+                                       // we need
                                        // the previous value few lines down this one
                                        scanSingleQuotedEscapeCharacter();
                                        escapeSize = currentPosition - escapeSize;
                                        if (withoutUnicodePtr == 0) {
                                                // buffer all the entries that have been left aside....
-                                               withoutUnicodePtr = currentPosition - escapeSize - 1 - startPosition;
-                                               System.arraycopy(source, startPosition, withoutUnicodeBuffer, 1, withoutUnicodePtr);
+                                               withoutUnicodePtr = currentPosition - escapeSize - 1
+                                                               - startPosition;
+                                               System.arraycopy(source, startPosition,
+                                                               withoutUnicodeBuffer, 1, withoutUnicodePtr);
                                                withoutUnicodeBuffer[++withoutUnicodePtr] = currentCharacter;
                                        } else { // overwrite the / in the buffer
                                                withoutUnicodeBuffer[withoutUnicodePtr] = currentCharacter;
-                                               if (backSlashAsUnicodeInString) { // there are TWO \ in the stream
+                                               if (backSlashAsUnicodeInString) { // there are TWO \
+                                                                                                                       // in the stream
                                                        // where only one is correct
                                                        withoutUnicodePtr--;
                                                }
                                        }
-                               } else if ((currentCharacter == '\r') || (currentCharacter == '\n')) {
+                               } else if ((currentCharacter == '\r')
+                                               || (currentCharacter == '\n')) {
                                        if (recordLineSeparator) {
                                                pushLineSeparator();
                                        }
@@ -1203,14 +1310,16 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        }
                        throw e; // rethrow
                }
-               if (checkNonExternalizedStringLiterals) { // check for presence of NLS tags
+               if (checkNonExternalizedStringLiterals) { // check for presence of NLS
+                                                                                                       // tags
                        // //$NON-NLS-?$ where ? is an
                        // int.
                        if (currentLine == null) {
                                currentLine = new NLSLine();
                                lines.add(currentLine);
                        }
-                       currentLine.add(new StringLiteral(getCurrentTokenSourceString(), startPosition, currentPosition - 1));
+                       currentLine.add(new StringLiteral(getCurrentTokenSourceString(),
+                                       startPosition, currentPosition - 1));
                }
        }
 
@@ -1220,34 +1329,41 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // consume next character
                        unicodeAsBackSlash = false;
                        currentCharacter = source[currentPosition++];
-                       while (currentCharacter != '"' || openDollarBrace>0) {
+                       while (currentCharacter != '"' || openDollarBrace > 0) {
                                /** ** in PHP \r and \n are valid in string literals *** */
                                if (currentCharacter == '\\') {
                                        int escapeSize = currentPosition;
                                        boolean backSlashAsUnicodeInString = unicodeAsBackSlash;
-                                       // scanEscapeCharacter make a side effect on this value and we need
+                                       // scanEscapeCharacter make a side effect on this value and
+                                       // we need
                                        // the previous value few lines down this one
                                        scanDoubleQuotedEscapeCharacter();
                                        escapeSize = currentPosition - escapeSize;
                                        if (withoutUnicodePtr == 0) {
                                                // buffer all the entries that have been left aside....
-                                               withoutUnicodePtr = currentPosition - escapeSize - 1 - startPosition;
-                                               System.arraycopy(source, startPosition, withoutUnicodeBuffer, 1, withoutUnicodePtr);
+                                               withoutUnicodePtr = currentPosition - escapeSize - 1
+                                                               - startPosition;
+                                               System.arraycopy(source, startPosition,
+                                                               withoutUnicodeBuffer, 1, withoutUnicodePtr);
                                                withoutUnicodeBuffer[++withoutUnicodePtr] = currentCharacter;
                                        } else { // overwrite the / in the buffer
                                                withoutUnicodeBuffer[withoutUnicodePtr] = currentCharacter;
-                                               if (backSlashAsUnicodeInString) { // there are TWO \ in the stream
+                                               if (backSlashAsUnicodeInString) { // there are TWO \
+                                                                                                                       // in the stream
                                                        // where only one is correct
                                                        withoutUnicodePtr--;
                                                }
                                        }
-                               } else if (currentCharacter == '$' && source[currentPosition] == '{') {
+                               } else if (currentCharacter == '$'
+                                               && source[currentPosition] == '{') {
                                        openDollarBrace++;
-                               } else if (currentCharacter == '{' && source[currentPosition] == '$') {
+                               } else if (currentCharacter == '{'
+                                               && source[currentPosition] == '$') {
                                        openDollarBrace++;
                                } else if (currentCharacter == '}') {
                                        openDollarBrace--;
-                               } else if ((currentCharacter == '\r') || (currentCharacter == '\n')) {
+                               } else if ((currentCharacter == '\r')
+                                               || (currentCharacter == '\n')) {
                                        if (recordLineSeparator) {
                                                pushLineSeparator();
                                        }
@@ -1280,14 +1396,16 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        }
                        throw e; // rethrow
                }
-               if (checkNonExternalizedStringLiterals) { // check for presence of NLS tags
+               if (checkNonExternalizedStringLiterals) { // check for presence of NLS
+                                                                                                       // tags
                        // //$NON-NLS-?$ where ? is an
                        // int.
                        if (currentLine == null) {
                                currentLine = new NLSLine();
                                lines.add(currentLine);
                        }
-                       currentLine.add(new StringLiteral(getCurrentTokenSourceString(), startPosition, currentPosition - 1));
+                       currentLine.add(new StringLiteral(getCurrentTokenSourceString(),
+                                       startPosition, currentPosition - 1));
                }
        }
 
@@ -1306,20 +1424,24 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        if (diet) {
                                jumpOverMethodBody();
                                diet = false;
-                               return currentPosition > source.length ? TokenNameEOF : TokenNameRBRACE;
+                               return currentPosition > source.length ? TokenNameEOF
+                                               : TokenNameRBRACE;
                        }
                        try {
                                while (true) {
                                        withoutUnicodePtr = 0;
-                                       // ---------Consume white space and handles startPosition---------
+                                       // ---------Consume white space and handles
+                                       // startPosition---------
                                        int whiteStart = currentPosition;
                                        startPosition = currentPosition;
                                        currentCharacter = source[currentPosition++];
 
-                                       while ((currentCharacter == ' ') || Character.isWhitespace(currentCharacter)) {
+                                       while ((currentCharacter == ' ')
+                                                       || Character.isWhitespace(currentCharacter)) {
                                                startPosition = currentPosition;
                                                currentCharacter = source[currentPosition++];
-                                               if ((currentCharacter == '\r') || (currentCharacter == '\n')) {
+                                               if ((currentCharacter == '\r')
+                                                               || (currentCharacter == '\n')) {
                                                        checkNonExternalizeString();
                                                        if (recordLineSeparator) {
                                                                pushLineSeparator();
@@ -1328,13 +1450,16 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                        }
                                                }
                                        }
-                                       if (tokenizeWhiteSpace && (whiteStart != currentPosition - 1)) {
-                                               // reposition scanner in case we are interested by spaces as tokens
+                                       if (tokenizeWhiteSpace
+                                                       && (whiteStart != currentPosition - 1)) {
+                                               // reposition scanner in case we are interested by
+                                               // spaces as tokens
                                                currentPosition--;
                                                startPosition = whiteStart;
                                                return TokenNameWHITESPACE;
                                        }
-                                       // little trick to get out in the middle of a source compuation
+                                       // little trick to get out in the middle of a source
+                                       // compuation
                                        if (currentPosition > eofPosition)
                                                return TokenNameEOF;
                                        // ---------Identify the next token-------------
@@ -1430,7 +1555,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                while (isPHPIdentifierPart(currentCharacter)) {
                                                                        currentCharacter = source[currentPosition++];
                                                                }
-                                                               heredocLength = currentPosition - heredocStart - 1;
+                                                               heredocLength = currentPosition - heredocStart
+                                                                               - 1;
                                                                // heredoc end-tag determination
                                                                boolean endTag = true;
                                                                char ch;
@@ -1443,7 +1569,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                                        currentLine = null;
                                                                                }
                                                                                for (int i = 0; i < heredocLength; i++) {
-                                                                                       if (source[currentPosition + i] != source[heredocStart + i]) {
+                                                                                       if (source[currentPosition + i] != source[heredocStart
+                                                                                                       + i]) {
                                                                                                endTag = false;
                                                                                                break;
                                                                                        }
@@ -1528,14 +1655,14 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                // if (tokenizeStrings) {
                                                consumeStringLiteral();
                                                return TokenNameStringDoubleQuote;
-                                       // }
-                                       // return TokenNameEncapsedString2;
+                                               // }
+                                               // return TokenNameEncapsedString2;
                                        case '`':
                                                // if (tokenizeStrings) {
                                                consumeStringInterpolated();
                                                return TokenNameStringInterpolated;
-                                       // }
-                                       // return TokenNameEncapsedString0;
+                                               // }
+                                               // return TokenNameEncapsedString0;
                                        case '#':
                                        case '/': {
                                                char startChar = currentCharacter;
@@ -1543,16 +1670,19 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                        return TokenNameDIVIDE_EQUAL;
                                                }
                                                int test;
-                                               if ((startChar == '#') || (test = getNextChar('/', '*')) == 0) {
+                                               if ((startChar == '#')
+                                                               || (test = getNextChar('/', '*')) == 0) {
                                                        // line comment
                                                        this.lastCommentLinePosition = this.currentPosition;
                                                        int endPositionForLineComment = 0;
                                                        try { // get the next char
                                                                currentCharacter = source[currentPosition++];
-                                                               // if (((currentCharacter = source[currentPosition++])
+                                                               // if (((currentCharacter =
+                                                               // source[currentPosition++])
                                                                // == '\\')
                                                                // && (source[currentPosition] == 'u')) {
-                                                               // //-------------unicode traitement ------------
+                                                               // //-------------unicode traitement
+                                                               // ------------
                                                                // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
                                                                // currentPosition++;
                                                                // while (source[currentPosition] == 'u') {
@@ -1578,7 +1708,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                // InvalidInputException(INVALID_UNICODE_ESCAPE);
                                                                // } else {
                                                                // currentCharacter =
-                                                               // (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
+                                                               // (char) (((c1 * 16 + c2) * 16 + c3) * 16 +
+                                                               // c4);
                                                                // }
                                                                // }
                                                                // handle the \\u case manually into comment
@@ -1587,7 +1718,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                // currentPosition++;
                                                                // } //jump over the \\
                                                                boolean isUnicode = false;
-                                                               while (currentCharacter != '\r' && currentCharacter != '\n') {
+                                                               while (currentCharacter != '\r'
+                                                                               && currentCharacter != '\n') {
                                                                        this.lastCommentLinePosition = this.currentPosition;
                                                                        if (currentCharacter == '?') {
                                                                                if (getNextChar('>')) {
@@ -1600,11 +1732,13 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                        // get the next char
                                                                        isUnicode = false;
                                                                        currentCharacter = source[currentPosition++];
-                                                                       // if (((currentCharacter = source[currentPosition++])
+                                                                       // if (((currentCharacter =
+                                                                       // source[currentPosition++])
                                                                        // == '\\')
                                                                        // && (source[currentPosition] == 'u')) {
                                                                        // isUnicode = true;
-                                                                       // //-------------unicode traitement ------------
+                                                                       // //-------------unicode traitement
+                                                                       // ------------
                                                                        // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
                                                                        // currentPosition++;
                                                                        // while (source[currentPosition] == 'u') {
@@ -1633,7 +1767,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                        // InvalidInputException(INVALID_UNICODE_ESCAPE);
                                                                        // } else {
                                                                        // currentCharacter =
-                                                                       // (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
+                                                                       // (char) (((c1 * 16 + c2) * 16 + c3) * 16 +
+                                                                       // c4);
                                                                        // }
                                                                        // }
                                                                        // handle the \\u case manually into comment
@@ -1650,8 +1785,10 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                // recordComment(false);
                                                                recordComment(TokenNameCOMMENT_LINE);
                                                                if (this.taskTags != null)
-                                                                       checkTaskTag(this.startPosition, this.currentPosition);
-                                                               if ((currentCharacter == '\r') || (currentCharacter == '\n')) {
+                                                                       checkTaskTag(this.startPosition,
+                                                                                       this.currentPosition);
+                                                               if ((currentCharacter == '\r')
+                                                                               || (currentCharacter == '\n')) {
                                                                        checkNonExternalizeString();
                                                                        if (recordLineSeparator) {
                                                                                if (isUnicode) {
@@ -1670,7 +1807,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                        }
                                                                        return TokenNameCOMMENT_LINE;
                                                                }
-                                                       } catch (IndexOutOfBoundsException e) { // an eof will them
+                                                       } catch (IndexOutOfBoundsException e) { // an eof
+                                                                                                                                       // will them
                                                                // be generated
                                                                if (tokenizeComments) {
                                                                        currentPosition--;
@@ -1686,7 +1824,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                        // consume next character
                                                        unicodeAsBackSlash = false;
                                                        currentCharacter = source[currentPosition++];
-                                                       // if (((currentCharacter = source[currentPosition++]) ==
+                                                       // if (((currentCharacter =
+                                                       // source[currentPosition++]) ==
                                                        // '\\')
                                                        // && (source[currentPosition] == 'u')) {
                                                        // getNextUnicodeChar();
@@ -1700,7 +1839,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                isJavadoc = true;
                                                                star = true;
                                                        }
-                                                       if ((currentCharacter == '\r') || (currentCharacter == '\n')) {
+                                                       if ((currentCharacter == '\r')
+                                                                       || (currentCharacter == '\n')) {
                                                                checkNonExternalizeString();
                                                                if (recordLineSeparator) {
                                                                        pushLineSeparator();
@@ -1710,10 +1850,12 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                        }
                                                        try { // get the next char
                                                                currentCharacter = source[currentPosition++];
-                                                               // if (((currentCharacter = source[currentPosition++])
+                                                               // if (((currentCharacter =
+                                                               // source[currentPosition++])
                                                                // == '\\')
                                                                // && (source[currentPosition] == 'u')) {
-                                                               // //-------------unicode traitement ------------
+                                                               // //-------------unicode traitement
+                                                               // ------------
                                                                // getNextUnicodeChar();
                                                                // }
                                                                // handle the \\u case manually into comment
@@ -1728,7 +1870,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                }
                                                                // loop until end of comment */
                                                                while ((currentCharacter != '/') || (!star)) {
-                                                                       if ((currentCharacter == '\r') || (currentCharacter == '\n')) {
+                                                                       if ((currentCharacter == '\r')
+                                                                                       || (currentCharacter == '\n')) {
                                                                                checkNonExternalizeString();
                                                                                if (recordLineSeparator) {
                                                                                        pushLineSeparator();
@@ -1739,10 +1882,12 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                        star = currentCharacter == '*';
                                                                        // get next char
                                                                        currentCharacter = source[currentPosition++];
-                                                                       // if (((currentCharacter = source[currentPosition++])
+                                                                       // if (((currentCharacter =
+                                                                       // source[currentPosition++])
                                                                        // == '\\')
                                                                        // && (source[currentPosition] == 'u')) {
-                                                                       // //-------------unicode traitement ------------
+                                                                       // //-------------unicode traitement
+                                                                       // ------------
                                                                        // getNextUnicodeChar();
                                                                        // }
                                                                        // handle the \\u case manually into comment
@@ -1765,12 +1910,14 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                }
 
                                                                if (this.taskTags != null) {
-                                                                       checkTaskTag(this.startPosition, this.currentPosition);
+                                                                       checkTaskTag(this.startPosition,
+                                                                                       this.currentPosition);
                                                                }
                                                        } catch (IndexOutOfBoundsException e) {
                                                                // reset end position for error reporting
                                                                currentPosition -= 2;
-                                                               throw new InvalidInputException(UNTERMINATED_COMMENT);
+                                                               throw new InvalidInputException(
+                                                                               UNTERMINATED_COMMENT);
                                                        }
                                                        break;
                                                }
@@ -1779,7 +1926,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                        case '\u001a':
                                                if (atEnd())
                                                        return TokenNameEOF;
-                                               // the atEnd may not be <currentPosition == source.length> if
+                                               // the atEnd may not be <currentPosition ==
+                                               // source.length> if
                                                // source is only some part of a real (external) stream
                                                throw new InvalidInputException("Ctrl-Z"); //$NON-NLS-1$
                                        default:
@@ -1829,7 +1977,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                if (currentCharacter == '<') {
                                        if (getNextChar('?')) {
                                                currentCharacter = source[currentPosition++];
-                                               if ((currentCharacter != 'P') && (currentCharacter != 'p')) {
+                                               if ((currentCharacter != 'P')
+                                                               && (currentCharacter != 'p')) {
                                                        if (currentCharacter != '=') { // <?=
                                                                currentPosition--;
                                                                phpShortTag = false;
@@ -1846,11 +1995,11 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                        return TokenNameINLINE_HTML;
                                                                }
                                                        } else {
-                                                               boolean foundXML=false;
-                                                               if (getNextChar('X','x')>=0) {
-                                                                       if (getNextChar('M','m')>=0) {
-                                                                               if (getNextChar('L','l')>=0) {
-                                                                                       foundXML=true;
+                                                               boolean foundXML = false;
+                                                               if (getNextChar('X', 'x') >= 0) {
+                                                                       if (getNextChar('M', 'm') >= 0) {
+                                                                               if (getNextChar('L', 'l') >= 0) {
+                                                                                       foundXML = true;
                                                                                }
                                                                        }
                                                                }
@@ -1902,7 +2051,7 @@ public class Scanner implements IScanner, ITerminalSymbols {
 
        /**
         * check if the PHP is only in this line (for CodeFormatter)
-        *
+        * 
         * @return
         */
        private int lookAheadLinePHPTag() {
@@ -1962,13 +2111,15 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                        }
                                        break;
                                case '/':
-                                       if (previousCharInLine == '/' && !singleQuotedStringActive && !doubleQuotedStringActive) {
+                                       if (previousCharInLine == '/' && !singleQuotedStringActive
+                                                       && !doubleQuotedStringActive) {
                                                phpMode = true;
                                                return TokenNameINLINE_HTML;
                                        }
                                        break;
                                case '*':
-                                       if (previousCharInLine == '/' && !singleQuotedStringActive && !doubleQuotedStringActive) {
+                                       if (previousCharInLine == '/' && !singleQuotedStringActive
+                                                       && !doubleQuotedStringActive) {
                                                phpMode = true;
                                                return TokenNameINLINE_HTML;
                                        }
@@ -2028,23 +2179,27 @@ public class Scanner implements IScanner, ITerminalSymbols {
        // unicodeAsBackSlash = currentCharacter == '\\';
        // }
        /*
-        * Tokenize a method body, assuming that curly brackets are properly balanced.
+        * Tokenize a method body, assuming that curly brackets are properly
+        * balanced.
         */
        public final void jumpOverMethodBody() {
                this.wasAcr = false;
                int found = 1;
                try {
                        while (true) { // loop for jumping over comments
-                               // ---------Consume white space and handles startPosition---------
+                               // ---------Consume white space and handles
+                               // startPosition---------
                                boolean isWhiteSpace;
                                do {
                                        startPosition = currentPosition;
                                        currentCharacter = source[currentPosition++];
-                                       // if (((currentCharacter = source[currentPosition++]) == '\\')
+                                       // if (((currentCharacter = source[currentPosition++]) ==
+                                       // '\\')
                                        // && (source[currentPosition] == 'u')) {
                                        // isWhiteSpace = jumpOverUnicodeWhiteSpace();
                                        // } else {
-                                       if (recordLineSeparator && ((currentCharacter == '\r') || (currentCharacter == '\n')))
+                                       if (recordLineSeparator
+                                                       && ((currentCharacter == '\r') || (currentCharacter == '\n')))
                                                pushLineSeparator();
                                        isWhiteSpace = Character.isWhitespace(currentCharacter);
                                        // }
@@ -2072,7 +2227,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                // try { // consume next character
                                                unicodeAsBackSlash = false;
                                                currentCharacter = source[currentPosition++];
-                                               // if (((currentCharacter = source[currentPosition++]) == '\\')
+                                               // if (((currentCharacter = source[currentPosition++])
+                                               // == '\\')
                                                // && (source[currentPosition] == 'u')) {
                                                // getNextUnicodeChar();
                                                // } else {
@@ -2091,7 +2247,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                // try { // consume next character
                                                unicodeAsBackSlash = false;
                                                currentCharacter = source[currentPosition++];
-                                               // if (((currentCharacter = source[currentPosition++]) == '\\')
+                                               // if (((currentCharacter = source[currentPosition++])
+                                               // == '\\')
                                                // && (source[currentPosition] == 'u')) {
                                                // getNextUnicodeChar();
                                                // } else {
@@ -2122,7 +2279,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                        // try { // consume next character
                                                        unicodeAsBackSlash = false;
                                                        currentCharacter = source[currentPosition++];
-                                                       // if (((currentCharacter = source[currentPosition++]) == '\\')
+                                                       // if (((currentCharacter =
+                                                       // source[currentPosition++]) == '\\')
                                                        // && (source[currentPosition] == 'u')) {
                                                        // getNextUnicodeChar();
                                                        // } else {
@@ -2144,7 +2302,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                try {
                                                        // get the next char
                                                        currentCharacter = source[currentPosition++];
-                                                       // if (((currentCharacter = source[currentPosition++]) ==
+                                                       // if (((currentCharacter =
+                                                       // source[currentPosition++]) ==
                                                        // '\\')
                                                        // && (source[currentPosition] == 'u')) {
                                                        // //-------------unicode traitement ------------
@@ -2177,13 +2336,16 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                        // (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
                                                        // }
                                                        // }
-                                                       while (currentCharacter != '\r' && currentCharacter != '\n') {
+                                                       while (currentCharacter != '\r'
+                                                                       && currentCharacter != '\n') {
                                                                // get the next char
                                                                currentCharacter = source[currentPosition++];
-                                                               // if (((currentCharacter = source[currentPosition++])
+                                                               // if (((currentCharacter =
+                                                               // source[currentPosition++])
                                                                // == '\\')
                                                                // && (source[currentPosition] == 'u')) {
-                                                               // //-------------unicode traitement ------------
+                                                               // //-------------unicode traitement
+                                                               // ------------
                                                                // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
                                                                // currentPosition++;
                                                                // while (source[currentPosition] == 'u') {
@@ -2210,11 +2372,13 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                // } //something different from \n and \r
                                                                // else {
                                                                // currentCharacter =
-                                                               // (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
+                                                               // (char) (((c1 * 16 + c2) * 16 + c3) * 16 +
+                                                               // c4);
                                                                // }
                                                                // }
                                                        }
-                                                       if (recordLineSeparator && ((currentCharacter == '\r') || (currentCharacter == '\n')))
+                                                       if (recordLineSeparator
+                                                                       && ((currentCharacter == '\r') || (currentCharacter == '\n')))
                                                                pushLineSeparator();
                                                } catch (IndexOutOfBoundsException e) {
                                                } // an eof will them be generated
@@ -2226,7 +2390,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                // try { // consume next character
                                                unicodeAsBackSlash = false;
                                                currentCharacter = source[currentPosition++];
-                                               // if (((currentCharacter = source[currentPosition++]) == '\\')
+                                               // if (((currentCharacter = source[currentPosition++])
+                                               // == '\\')
                                                // && (source[currentPosition] == 'u')) {
                                                // getNextUnicodeChar();
                                                // } else {
@@ -2239,11 +2404,13 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                if (currentCharacter == '*') {
                                                        star = true;
                                                }
-                                               if (recordLineSeparator && ((currentCharacter == '\r') || (currentCharacter == '\n')))
+                                               if (recordLineSeparator
+                                                               && ((currentCharacter == '\r') || (currentCharacter == '\n')))
                                                        pushLineSeparator();
                                                try { // get the next char
                                                        currentCharacter = source[currentPosition++];
-                                                       // if (((currentCharacter = source[currentPosition++]) ==
+                                                       // if (((currentCharacter =
+                                                       // source[currentPosition++]) ==
                                                        // '\\')
                                                        // && (source[currentPosition] == 'u')) {
                                                        // //-------------unicode traitement ------------
@@ -2278,15 +2445,18 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                        // }
                                                        // loop until end of comment */
                                                        while ((currentCharacter != '/') || (!star)) {
-                                                               if (recordLineSeparator && ((currentCharacter == '\r') || (currentCharacter == '\n')))
+                                                               if (recordLineSeparator
+                                                                               && ((currentCharacter == '\r') || (currentCharacter == '\n')))
                                                                        pushLineSeparator();
                                                                star = currentCharacter == '*';
                                                                // get next char
                                                                currentCharacter = source[currentPosition++];
-                                                               // if (((currentCharacter = source[currentPosition++])
+                                                               // if (((currentCharacter =
+                                                               // source[currentPosition++])
                                                                // == '\\')
                                                                // && (source[currentPosition] == 'u')) {
-                                                               // //-------------unicode traitement ------------
+                                                               // //-------------unicode traitement
+                                                               // ------------
                                                                // int c1 = 0, c2 = 0, c3 = 0, c4 = 0;
                                                                // currentPosition++;
                                                                // while (source[currentPosition] == 'u') {
@@ -2313,7 +2483,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                                // } //something different from * and /
                                                                // else {
                                                                // currentCharacter =
-                                                               // (char) (((c1 * 16 + c2) * 16 + c3) * 16 + c4);
+                                                               // (char) (((c1 * 16 + c2) * 16 + c3) * 16 +
+                                                               // c4);
                                                                // }
                                                                // }
                                                        }
@@ -2398,7 +2569,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
        public final int[] getLineEnds() {
                // return a bounded copy of this.lineEnds
                int[] copy;
-               System.arraycopy(lineEnds, 0, copy = new int[linePtr + 1], 0, linePtr + 1);
+               System.arraycopy(lineEnds, 0, copy = new int[linePtr + 1], 0,
+                               linePtr + 1);
                return copy;
        }
 
@@ -2478,7 +2650,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                c1 = source[startPosition + 1];
                if (c0 == '$') {
                        // return always the same char[] build only once
-                       // optimization at no speed cost of 99.5 % of the singleCharIdentifier
+                       // optimization at no speed cost of 99.5 % of the
+                       // singleCharIdentifier
                        switch (c1) {
                        case 'a':
                                return charArray_va;
@@ -2563,13 +2736,15 @@ public class Scanner implements IScanner, ITerminalSymbols {
        final char[] optimizedCurrentTokenSource3() {
                // try to return the same char[] build only once
                char c0, c1, c2;
-               int hash = (((c0 = source[startPosition]) << 12) + ((c1 = source[startPosition + 1]) << 6) + (c2 = source[startPosition + 2]))
+               int hash = (((c0 = source[startPosition]) << 12)
+                               + ((c1 = source[startPosition + 1]) << 6) + (c2 = source[startPosition + 2]))
                                % TableSize;
                char[][] table = charArray_length[1][hash];
                int i = newEntry3;
                while (++i < InternalTableSize) {
                        char[] charArray = table[i];
-                       if ((c0 == charArray[0]) && (c1 == charArray[1]) && (c2 == charArray[2]))
+                       if ((c0 == charArray[0]) && (c1 == charArray[1])
+                                       && (c2 == charArray[2]))
                                return charArray;
                }
                // ---------other side---------
@@ -2577,7 +2752,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                int max = newEntry3;
                while (++i <= max) {
                        char[] charArray = table[i];
-                       if ((c0 == charArray[0]) && (c1 == charArray[1]) && (c2 == charArray[2]))
+                       if ((c0 == charArray[0]) && (c1 == charArray[1])
+                                       && (c2 == charArray[2]))
                                return charArray;
                }
                // --------add the entry-------
@@ -2592,14 +2768,16 @@ public class Scanner implements IScanner, ITerminalSymbols {
        final char[] optimizedCurrentTokenSource4() {
                // try to return the same char[] build only once
                char c0, c1, c2, c3;
-               long hash = ((((long) (c0 = source[startPosition])) << 18) + ((c1 = source[startPosition + 1]) << 12)
+               long hash = ((((long) (c0 = source[startPosition])) << 18)
+                               + ((c1 = source[startPosition + 1]) << 12)
                                + ((c2 = source[startPosition + 2]) << 6) + (c3 = source[startPosition + 3]))
                                % TableSize;
                char[][] table = charArray_length[2][(int) hash];
                int i = newEntry4;
                while (++i < InternalTableSize) {
                        char[] charArray = table[i];
-                       if ((c0 == charArray[0]) && (c1 == charArray[1]) && (c2 == charArray[2]) && (c3 == charArray[3]))
+                       if ((c0 == charArray[0]) && (c1 == charArray[1])
+                                       && (c2 == charArray[2]) && (c3 == charArray[3]))
                                return charArray;
                }
                // ---------other side---------
@@ -2607,7 +2785,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                int max = newEntry4;
                while (++i <= max) {
                        char[] charArray = table[i];
-                       if ((c0 == charArray[0]) && (c1 == charArray[1]) && (c2 == charArray[2]) && (c3 == charArray[3]))
+                       if ((c0 == charArray[0]) && (c1 == charArray[1])
+                                       && (c2 == charArray[2]) && (c3 == charArray[3]))
                                return charArray;
                }
                // --------add the entry-------
@@ -2622,14 +2801,18 @@ public class Scanner implements IScanner, ITerminalSymbols {
        final char[] optimizedCurrentTokenSource5() {
                // try to return the same char[] build only once
                char c0, c1, c2, c3, c4;
-               long hash = ((((long) (c0 = source[startPosition])) << 24) + (((long) (c1 = source[startPosition + 1])) << 18)
-                               + ((c2 = source[startPosition + 2]) << 12) + ((c3 = source[startPosition + 3]) << 6) + (c4 = source[startPosition + 4]))
+               long hash = ((((long) (c0 = source[startPosition])) << 24)
+                               + (((long) (c1 = source[startPosition + 1])) << 18)
+                               + ((c2 = source[startPosition + 2]) << 12)
+                               + ((c3 = source[startPosition + 3]) << 6) + (c4 = source[startPosition + 4]))
                                % TableSize;
                char[][] table = charArray_length[3][(int) hash];
                int i = newEntry5;
                while (++i < InternalTableSize) {
                        char[] charArray = table[i];
-                       if ((c0 == charArray[0]) && (c1 == charArray[1]) && (c2 == charArray[2]) && (c3 == charArray[3]) && (c4 == charArray[4]))
+                       if ((c0 == charArray[0]) && (c1 == charArray[1])
+                                       && (c2 == charArray[2]) && (c3 == charArray[3])
+                                       && (c4 == charArray[4]))
                                return charArray;
                }
                // ---------other side---------
@@ -2637,7 +2820,9 @@ public class Scanner implements IScanner, ITerminalSymbols {
                int max = newEntry5;
                while (++i <= max) {
                        char[] charArray = table[i];
-                       if ((c0 == charArray[0]) && (c1 == charArray[1]) && (c2 == charArray[2]) && (c3 == charArray[3]) && (c4 == charArray[4]))
+                       if ((c0 == charArray[0]) && (c1 == charArray[1])
+                                       && (c2 == charArray[2]) && (c3 == charArray[3])
+                                       && (c4 == charArray[4]))
                                return charArray;
                }
                // --------add the entry-------
@@ -2652,16 +2837,19 @@ public class Scanner implements IScanner, ITerminalSymbols {
        final char[] optimizedCurrentTokenSource6() {
                // try to return the same char[] build only once
                char c0, c1, c2, c3, c4, c5;
-               long hash = ((((long) (c0 = source[startPosition])) << 32) + (((long) (c1 = source[startPosition + 1])) << 24)
-                               + (((long) (c2 = source[startPosition + 2])) << 18) + ((c3 = source[startPosition + 3]) << 12)
+               long hash = ((((long) (c0 = source[startPosition])) << 32)
+                               + (((long) (c1 = source[startPosition + 1])) << 24)
+                               + (((long) (c2 = source[startPosition + 2])) << 18)
+                               + ((c3 = source[startPosition + 3]) << 12)
                                + ((c4 = source[startPosition + 4]) << 6) + (c5 = source[startPosition + 5]))
                                % TableSize;
                char[][] table = charArray_length[4][(int) hash];
                int i = newEntry6;
                while (++i < InternalTableSize) {
                        char[] charArray = table[i];
-                       if ((c0 == charArray[0]) && (c1 == charArray[1]) && (c2 == charArray[2]) && (c3 == charArray[3]) && (c4 == charArray[4])
-                                       && (c5 == charArray[5]))
+                       if ((c0 == charArray[0]) && (c1 == charArray[1])
+                                       && (c2 == charArray[2]) && (c3 == charArray[3])
+                                       && (c4 == charArray[4]) && (c5 == charArray[5]))
                                return charArray;
                }
                // ---------other side---------
@@ -2669,8 +2857,9 @@ public class Scanner implements IScanner, ITerminalSymbols {
                int max = newEntry6;
                while (++i <= max) {
                        char[] charArray = table[i];
-                       if ((c0 == charArray[0]) && (c1 == charArray[1]) && (c2 == charArray[2]) && (c3 == charArray[3]) && (c4 == charArray[4])
-                                       && (c5 == charArray[5]))
+                       if ((c0 == charArray[0]) && (c1 == charArray[1])
+                                       && (c2 == charArray[2]) && (c3 == charArray[3])
+                                       && (c4 == charArray[4]) && (c5 == charArray[5]))
                                return charArray;
                }
                // --------add the entry-------
@@ -2748,7 +2937,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
        }
 
        public final void pushUnicodeLineSeparator() {
-               // isUnicode means that the \r or \n has been read as a unicode character
+               // isUnicode means that the \r or \n has been read as a unicode
+               // character
                // see comment on isLineDelimiter(char) for the use of '\n' and '\r'
                final int INCREMENT = 250;
                // currentCharacter is at position currentPosition-1
@@ -2824,9 +3014,11 @@ public class Scanner implements IScanner, ITerminalSymbols {
                // a new comment is recorded
                int length = this.commentStops.length;
                if (++this.commentPtr >= length) {
-                       System.arraycopy(this.commentStops, 0, this.commentStops = new int[length + 30], 0, length);
+                       System.arraycopy(this.commentStops, 0,
+                                       this.commentStops = new int[length + 30], 0, length);
                        // grows the positions buffers too
-                       System.arraycopy(this.commentStarts, 0, this.commentStarts = new int[length + 30], 0, length);
+                       System.arraycopy(this.commentStarts, 0,
+                                       this.commentStarts = new int[length + 30], 0, length);
                }
                this.commentStops[this.commentPtr] = stopPosition;
                this.commentStarts[this.commentPtr] = this.startPosition;
@@ -2843,7 +3035,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
        // int[] oldStack = commentStops;
        // commentStops = new int[oldStackLength + 30];
        // System.arraycopy(oldStack, 0, commentStops, 0, oldStackLength);
-       // commentStops[commentPtr] = isJavadoc ? currentPosition : -currentPosition;
+       // commentStops[commentPtr] = isJavadoc ? currentPosition :
+       // -currentPosition;
        // //grows the positions buffers too
        // int[] old = commentStarts;
        // commentStarts = new int[oldStackLength + 30];
@@ -2860,7 +3053,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                commentPtr = -1; // reset comment stack
        }
 
-       public final void scanSingleQuotedEscapeCharacter() throws InvalidInputException {
+       public final void scanSingleQuotedEscapeCharacter()
+                       throws InvalidInputException {
                // the string with "\\u" is a legal string of two chars \ and u
                // thus we use a direct access to the source (for regular cases).
                // if (unicodeAsBackSlash) {
@@ -2889,7 +3083,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                }
        }
 
-       public final void scanDoubleQuotedEscapeCharacter() throws InvalidInputException {
+       public final void scanDoubleQuotedEscapeCharacter()
+                       throws InvalidInputException {
                currentCharacter = source[currentPosition++];
                switch (currentCharacter) {
                // case 'b' :
@@ -2927,29 +3122,37 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        int number = Character.getNumericValue(currentCharacter);
                        if (number >= 0 && number <= 7) {
                                boolean zeroToThreeNot = number > 3;
-                               if (Character.isDigit(currentCharacter = source[currentPosition++])) {
+                               if (Character
+                                               .isDigit(currentCharacter = source[currentPosition++])) {
                                        int digit = Character.getNumericValue(currentCharacter);
                                        if (digit >= 0 && digit <= 7) {
                                                number = (number * 8) + digit;
-                                               if (Character.isDigit(currentCharacter = source[currentPosition++])) {
-                                                       if (zeroToThreeNot) { // has read \NotZeroToThree OctalDigit
+                                               if (Character
+                                                               .isDigit(currentCharacter = source[currentPosition++])) {
+                                                       if (zeroToThreeNot) { // has read \NotZeroToThree
+                                                                                                       // OctalDigit
                                                                // Digit --> ignore last character
                                                                currentPosition--;
                                                        } else {
-                                                               digit = Character.getNumericValue(currentCharacter);
+                                                               digit = Character
+                                                                               .getNumericValue(currentCharacter);
                                                                if (digit >= 0 && digit <= 7) {
-                                                                       // has read \ZeroToThree OctalDigit OctalDigit
+                                                                       // has read \ZeroToThree OctalDigit
+                                                                       // OctalDigit
                                                                        number = (number * 8) + digit;
-                                                               } else { // has read \ZeroToThree OctalDigit NonOctalDigit
+                                                               } else { // has read \ZeroToThree OctalDigit
+                                                                                       // NonOctalDigit
                                                                        // --> ignore last character
                                                                        currentPosition--;
                                                                }
                                                        }
-                                               } else { // has read \OctalDigit NonDigit--> ignore last
+                                               } else { // has read \OctalDigit NonDigit--> ignore
+                                                                       // last
                                                        // character
                                                        currentPosition--;
                                                }
-                                       } else { // has read \OctalDigit NonOctalDigit--> ignore last
+                                       } else { // has read \OctalDigit NonOctalDigit--> ignore
+                                                               // last
                                                // character
                                                currentPosition--;
                                        }
@@ -2960,15 +3163,16 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                        throw new InvalidInputException(INVALID_ESCAPE);
                                currentCharacter = (char) number;
                        }
-               // else
-               // throw new InvalidInputException(INVALID_ESCAPE);
+                       // else
+                       // throw new InvalidInputException(INVALID_ESCAPE);
                }
        }
 
        // public int scanIdentifierOrKeyword() throws InvalidInputException {
        // return scanIdentifierOrKeyword( false );
        // }
-       public int scanIdentifierOrKeyword(boolean isVariable) throws InvalidInputException {
+       public int scanIdentifierOrKeyword(boolean isVariable)
+                       throws InvalidInputException {
                // test keywords
                // first dispatch on the first char.
                // then the length. If there are several
@@ -2988,7 +3192,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                char[] data;
                char firstLetter;
                // if (withoutUnicodePtr == 0)
-               // quick test on length == 1 but not on length > 12 while most identifier
+               // quick test on length == 1 but not on length > 12 while most
+               // identifier
                // have a length which is <= 12...but there are lots of identifier with
                // only one char....
                // {
@@ -3017,32 +3222,43 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        switch (length) {
                        case 8:
                                // __FILE__
-                               if ((data[++index] == '_') && (data[++index] == 'f') && (data[++index] == 'i') && (data[++index] == 'l')
-                                               && (data[++index] == 'e') && (data[++index] == '_') && (data[++index] == '_'))
+                               if ((data[++index] == '_') && (data[++index] == 'f')
+                                               && (data[++index] == 'i') && (data[++index] == 'l')
+                                               && (data[++index] == 'e') && (data[++index] == '_')
+                                               && (data[++index] == '_'))
                                        return TokenNameFILE;
                                index = 0; // __LINE__
-                               if ((data[++index] == '_') && (data[++index] == 'l') && (data[++index] == 'i') && (data[++index] == 'n')
-                                               && (data[++index] == 'e') && (data[++index] == '_') && (data[++index] == '_'))
+                               if ((data[++index] == '_') && (data[++index] == 'l')
+                                               && (data[++index] == 'i') && (data[++index] == 'n')
+                                               && (data[++index] == 'e') && (data[++index] == '_')
+                                               && (data[++index] == '_'))
                                        return TokenNameLINE;
                                break;
                        case 9:
                                // __CLASS__
-                               if ((data[++index] == '_') && (data[++index] == 'c') && (data[++index] == 'l') && (data[++index] == 'a')
-                                               && (data[++index] == 's') && (data[++index] == 's') && (data[++index] == '_') && (data[++index] == '_'))
+                               if ((data[++index] == '_') && (data[++index] == 'c')
+                                               && (data[++index] == 'l') && (data[++index] == 'a')
+                                               && (data[++index] == 's') && (data[++index] == 's')
+                                               && (data[++index] == '_') && (data[++index] == '_'))
                                        return TokenNameCLASS_C;
                                break;
                        case 11:
                                // __METHOD__
-                               if ((data[++index] == '_') && (data[++index] == 'm') && (data[++index] == 'e') && (data[++index] == 't')
-                                               && (data[++index] == 'h') && (data[++index] == 'o') && (data[++index] == 'd') && (data[++index] == '_')
+                               if ((data[++index] == '_') && (data[++index] == 'm')
+                                               && (data[++index] == 'e') && (data[++index] == 't')
+                                               && (data[++index] == 'h') && (data[++index] == 'o')
+                                               && (data[++index] == 'd') && (data[++index] == '_')
                                                && (data[++index] == '_'))
                                        return TokenNameMETHOD_C;
                                break;
                        case 12:
                                // __FUNCTION__
-                               if ((data[++index] == '_') && (data[++index] == 'f') && (data[++index] == 'u') && (data[++index] == 'n')
-                                               && (data[++index] == 'c') && (data[++index] == 't') && (data[++index] == 'i') && (data[++index] == 'o')
-                                               && (data[++index] == 'n') && (data[++index] == '_') && (data[++index] == '_'))
+                               if ((data[++index] == '_') && (data[++index] == 'f')
+                                               && (data[++index] == 'u') && (data[++index] == 'n')
+                                               && (data[++index] == 'c') && (data[++index] == 't')
+                                               && (data[++index] == 'i') && (data[++index] == 'o')
+                                               && (data[++index] == 'n') && (data[++index] == '_')
+                                               && (data[++index] == '_'))
                                        return TokenNameFUNC_C;
                                break;
                        }
@@ -3064,12 +3280,15 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                return TokenNameIdentifier;
                        case 5:
                                // array
-                               if ((data[++index] == 'r') && (data[++index] == 'r') && (data[++index] == 'a') && (data[++index] == 'y'))
+                               if ((data[++index] == 'r') && (data[++index] == 'r')
+                                               && (data[++index] == 'a') && (data[++index] == 'y'))
                                        return TokenNamearray;
                                return TokenNameIdentifier;
                        case 8:
-                               if ((data[++index] == 'b') && (data[++index] == 's') && (data[++index] == 't') && (data[++index] == 'r')
-                                               && (data[++index] == 'a') && (data[++index] == 'c') && (data[++index] == 't'))
+                               if ((data[++index] == 'b') && (data[++index] == 's')
+                                               && (data[++index] == 't') && (data[++index] == 'r')
+                                               && (data[++index] == 'a') && (data[++index] == 'c')
+                                               && (data[++index] == 't'))
                                        return TokenNameabstract;
                                return TokenNameIdentifier;
                        }
@@ -3078,7 +3297,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // break
                        switch (length) {
                        case 5:
-                               if ((data[++index] == 'r') && (data[++index] == 'e') && (data[++index] == 'a') && (data[++index] == 'k'))
+                               if ((data[++index] == 'r') && (data[++index] == 'e')
+                                               && (data[++index] == 'a') && (data[++index] == 'k'))
                                        return TokenNamebreak;
                                return TokenNameIdentifier;
                        }
@@ -3087,25 +3307,32 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // case catch class clone const continue
                        switch (length) {
                        case 4:
-                               if ((data[++index] == 'a') && (data[++index] == 's') && (data[++index] == 'e'))
+                               if ((data[++index] == 'a') && (data[++index] == 's')
+                                               && (data[++index] == 'e'))
                                        return TokenNamecase;
                                return TokenNameIdentifier;
                        case 5:
-                               if ((data[++index] == 'a') && (data[++index] == 't') && (data[++index] == 'c') && (data[++index] == 'h'))
+                               if ((data[++index] == 'a') && (data[++index] == 't')
+                                               && (data[++index] == 'c') && (data[++index] == 'h'))
                                        return TokenNamecatch;
                                index = 0;
-                               if ((data[++index] == 'l') && (data[++index] == 'a') && (data[++index] == 's') && (data[++index] == 's'))
+                               if ((data[++index] == 'l') && (data[++index] == 'a')
+                                               && (data[++index] == 's') && (data[++index] == 's'))
                                        return TokenNameclass;
                                index = 0;
-                               if ((data[++index] == 'l') && (data[++index] == 'o') && (data[++index] == 'n') && (data[++index] == 'e'))
+                               if ((data[++index] == 'l') && (data[++index] == 'o')
+                                               && (data[++index] == 'n') && (data[++index] == 'e'))
                                        return TokenNameclone;
                                index = 0;
-                               if ((data[++index] == 'o') && (data[++index] == 'n') && (data[++index] == 's') && (data[++index] == 't'))
+                               if ((data[++index] == 'o') && (data[++index] == 'n')
+                                               && (data[++index] == 's') && (data[++index] == 't'))
                                        return TokenNameconst;
                                return TokenNameIdentifier;
                        case 8:
-                               if ((data[++index] == 'o') && (data[++index] == 'n') && (data[++index] == 't') && (data[++index] == 'i')
-                                               && (data[++index] == 'n') && (data[++index] == 'u') && (data[++index] == 'e'))
+                               if ((data[++index] == 'o') && (data[++index] == 'n')
+                                               && (data[++index] == 't') && (data[++index] == 'i')
+                                               && (data[++index] == 'n') && (data[++index] == 'u')
+                                               && (data[++index] == 'e'))
                                        return TokenNamecontinue;
                                return TokenNameIdentifier;
                        }
@@ -3118,21 +3345,23 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                if ((data[++index] == 'o'))
                                        return TokenNamedo;
                                return TokenNameIdentifier;
-                       // case 6 :
-                       // if ((data[++index] == 'e')
-                       // && (data[++index] == 'f')
-                       // && (data[++index] == 'i')
-                       // && (data[++index] == 'n')
-                       // && (data[++index] == 'e'))
-                       // return TokenNamedefine;
-                       // else
-                       // return TokenNameIdentifier;
+                               // case 6 :
+                               // if ((data[++index] == 'e')
+                               // && (data[++index] == 'f')
+                               // && (data[++index] == 'i')
+                               // && (data[++index] == 'n')
+                               // && (data[++index] == 'e'))
+                               // return TokenNamedefine;
+                               // else
+                               // return TokenNameIdentifier;
                        case 7:
-                               if ((data[++index] == 'e') && (data[++index] == 'c') && (data[++index] == 'l') && (data[++index] == 'a')
+                               if ((data[++index] == 'e') && (data[++index] == 'c')
+                                               && (data[++index] == 'l') && (data[++index] == 'a')
                                                && (data[++index] == 'r') && (data[++index] == 'e'))
                                        return TokenNamedeclare;
                                index = 0;
-                               if ((data[++index] == 'e') && (data[++index] == 'f') && (data[++index] == 'a') && (data[++index] == 'u')
+                               if ((data[++index] == 'e') && (data[++index] == 'f')
+                                               && (data[++index] == 'a') && (data[++index] == 'u')
                                                && (data[++index] == 'l') && (data[++index] == 't'))
                                        return TokenNamedefault;
                                return TokenNameIdentifier;
@@ -3142,58 +3371,78 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // echo else exit elseif extends eval
                        switch (length) {
                        case 4:
-                               if ((data[++index] == 'c') && (data[++index] == 'h') && (data[++index] == 'o'))
+                               if ((data[++index] == 'c') && (data[++index] == 'h')
+                                               && (data[++index] == 'o'))
                                        return TokenNameecho;
-                               else if ((data[index] == 'l') && (data[++index] == 's') && (data[++index] == 'e'))
+                               else if ((data[index] == 'l') && (data[++index] == 's')
+                                               && (data[++index] == 'e'))
                                        return TokenNameelse;
-                               else if ((data[index] == 'x') && (data[++index] == 'i') && (data[++index] == 't'))
+                               else if ((data[index] == 'x') && (data[++index] == 'i')
+                                               && (data[++index] == 't'))
                                        return TokenNameexit;
-                               else if ((data[index] == 'v') && (data[++index] == 'a') && (data[++index] == 'l'))
+                               else if ((data[index] == 'v') && (data[++index] == 'a')
+                                               && (data[++index] == 'l'))
                                        return TokenNameeval;
                                return TokenNameIdentifier;
                        case 5:
                                // endif empty
-                               if ((data[++index] == 'n') && (data[++index] == 'd') && (data[++index] == 'i') && (data[++index] == 'f'))
+                               if ((data[++index] == 'n') && (data[++index] == 'd')
+                                               && (data[++index] == 'i') && (data[++index] == 'f'))
                                        return TokenNameendif;
-                               if ((data[index] == 'm') && (data[++index] == 'p') && (data[++index] == 't') && (data[++index] == 'y'))
+                               if ((data[index] == 'm') && (data[++index] == 'p')
+                                               && (data[++index] == 't') && (data[++index] == 'y'))
                                        return TokenNameempty;
                                return TokenNameIdentifier;
                        case 6:
                                // endfor
-                               if ((data[++index] == 'n') && (data[++index] == 'd') && (data[++index] == 'f') && (data[++index] == 'o')
+                               if ((data[++index] == 'n') && (data[++index] == 'd')
+                                               && (data[++index] == 'f') && (data[++index] == 'o')
                                                && (data[++index] == 'r'))
                                        return TokenNameendfor;
-                               else if ((data[index] == 'l') && (data[++index] == 's') && (data[++index] == 'e') && (data[++index] == 'i')
+                               else if ((data[index] == 'l') && (data[++index] == 's')
+                                               && (data[++index] == 'e') && (data[++index] == 'i')
                                                && (data[++index] == 'f'))
                                        return TokenNameelseif;
                                return TokenNameIdentifier;
                        case 7:
-                               if ((data[++index] == 'x') && (data[++index] == 't') && (data[++index] == 'e') && (data[++index] == 'n')
+                               if ((data[++index] == 'x') && (data[++index] == 't')
+                                               && (data[++index] == 'e') && (data[++index] == 'n')
                                                && (data[++index] == 'd') && (data[++index] == 's'))
                                        return TokenNameextends;
                                return TokenNameIdentifier;
                        case 8:
                                // endwhile
-                               if ((data[++index] == 'n') && (data[++index] == 'd') && (data[++index] == 'w') && (data[++index] == 'h')
-                                               && (data[++index] == 'i') && (data[++index] == 'l') && (data[++index] == 'e'))
+                               if ((data[++index] == 'n') && (data[++index] == 'd')
+                                               && (data[++index] == 'w') && (data[++index] == 'h')
+                                               && (data[++index] == 'i') && (data[++index] == 'l')
+                                               && (data[++index] == 'e'))
                                        return TokenNameendwhile;
                                return TokenNameIdentifier;
                        case 9:
                                // endswitch
-                               if ((data[++index] == 'n') && (data[++index] == 'd') && (data[++index] == 's') && (data[++index] == 'w')
-                                               && (data[++index] == 'i') && (data[++index] == 't') && (data[++index] == 'c') && (data[++index] == 'h'))
+                               if ((data[++index] == 'n') && (data[++index] == 'd')
+                                               && (data[++index] == 's') && (data[++index] == 'w')
+                                               && (data[++index] == 'i') && (data[++index] == 't')
+                                               && (data[++index] == 'c') && (data[++index] == 'h'))
                                        return TokenNameendswitch;
                                return TokenNameIdentifier;
                        case 10:
                                // enddeclare
-                               if ((data[++index] == 'n') && (data[++index] == 'd') && (data[++index] == 'd') && (data[++index] == 'e')
-                                               && (data[++index] == 'c') && (data[++index] == 'l') && (data[++index] == 'a') && (data[++index] == 'r')
+                               if ((data[++index] == 'n') && (data[++index] == 'd')
+                                               && (data[++index] == 'd') && (data[++index] == 'e')
+                                               && (data[++index] == 'c') && (data[++index] == 'l')
+                                               && (data[++index] == 'a') && (data[++index] == 'r')
                                                && (data[++index] == 'e'))
                                        return TokenNameenddeclare;
                                index = 0;
                                if ((data[++index] == 'n') // endforeach
-                                               && (data[++index] == 'd') && (data[++index] == 'f') && (data[++index] == 'o') && (data[++index] == 'r')
-                                               && (data[++index] == 'e') && (data[++index] == 'a') && (data[++index] == 'c') && (data[++index] == 'h'))
+                                               && (data[++index] == 'd')
+                                               && (data[++index] == 'f')
+                                               && (data[++index] == 'o')
+                                               && (data[++index] == 'r')
+                                               && (data[++index] == 'e')
+                                               && (data[++index] == 'a')
+                                               && (data[++index] == 'c') && (data[++index] == 'h'))
                                        return TokenNameendforeach;
                                return TokenNameIdentifier;
                        }
@@ -3209,19 +3458,23 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                // if ((data[++index] == 'a') && (data[++index] == 'l')
                                // && (data[++index] == 's') && (data[++index] == 'e'))
                                // return TokenNamefalse;
-                               if ((data[++index] == 'i') && (data[++index] == 'n') && (data[++index] == 'a') && (data[++index] == 'l'))
+                               if ((data[++index] == 'i') && (data[++index] == 'n')
+                                               && (data[++index] == 'a') && (data[++index] == 'l'))
                                        return TokenNamefinal;
                                return TokenNameIdentifier;
                        case 7:
                                // foreach
-                               if ((data[++index] == 'o') && (data[++index] == 'r') && (data[++index] == 'e') && (data[++index] == 'a')
+                               if ((data[++index] == 'o') && (data[++index] == 'r')
+                                               && (data[++index] == 'e') && (data[++index] == 'a')
                                                && (data[++index] == 'c') && (data[++index] == 'h'))
                                        return TokenNameforeach;
                                return TokenNameIdentifier;
                        case 8:
                                // function
-                               if ((data[++index] == 'u') && (data[++index] == 'n') && (data[++index] == 'c') && (data[++index] == 't')
-                                               && (data[++index] == 'i') && (data[++index] == 'o') && (data[++index] == 'n'))
+                               if ((data[++index] == 'u') && (data[++index] == 'n')
+                                               && (data[++index] == 'c') && (data[++index] == 't')
+                                               && (data[++index] == 'i') && (data[++index] == 'o')
+                                               && (data[++index] == 'n'))
                                        return TokenNamefunction;
                                return TokenNameIdentifier;
                        }
@@ -3229,7 +3482,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                case 'g':
                        // global
                        if (length == 6) {
-                               if ((data[++index] == 'l') && (data[++index] == 'o') && (data[++index] == 'b') && (data[++index] == 'a')
+                               if ((data[++index] == 'l') && (data[++index] == 'o')
+                                               && (data[++index] == 'b') && (data[++index] == 'a')
                                                && (data[++index] == 'l')) {
                                        return TokenNameglobal;
                                }
@@ -3242,41 +3496,52 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                if (data[++index] == 'f')
                                        return TokenNameif;
                                return TokenNameIdentifier;
-                       // case 3 :
-                       // if ((data[++index] == 'n') && (data[++index] == 't'))
-                       // return TokenNameint;
-                       // else
-                       // return TokenNameIdentifier;
+                               // case 3 :
+                               // if ((data[++index] == 'n') && (data[++index] == 't'))
+                               // return TokenNameint;
+                               // else
+                               // return TokenNameIdentifier;
                        case 5:
-                               if ((data[++index] == 's') && (data[++index] == 's') && (data[++index] == 'e') && (data[++index] == 't'))
+                               if ((data[++index] == 's') && (data[++index] == 's')
+                                               && (data[++index] == 'e') && (data[++index] == 't'))
                                        return TokenNameisset;
                                return TokenNameIdentifier;
                        case 7:
-                               if ((data[++index] == 'n') && (data[++index] == 'c') && (data[++index] == 'l') && (data[++index] == 'u')
+                               if ((data[++index] == 'n') && (data[++index] == 'c')
+                                               && (data[++index] == 'l') && (data[++index] == 'u')
                                                && (data[++index] == 'd') && (data[++index] == 'e'))
                                        return TokenNameinclude;
                                return TokenNameIdentifier;
                        case 9:
                                // interface
-                               if ((data[++index] == 'n') && (data[++index] == 't') && (data[++index] == 'e') && (data[++index] == 'r')
-                                               && (data[++index] == 'f') && (data[++index] == 'a') && (data[++index] == 'c') && (data[++index] == 'e'))
+                               if ((data[++index] == 'n') && (data[++index] == 't')
+                                               && (data[++index] == 'e') && (data[++index] == 'r')
+                                               && (data[++index] == 'f') && (data[++index] == 'a')
+                                               && (data[++index] == 'c') && (data[++index] == 'e'))
                                        return TokenNameinterface;
                                return TokenNameIdentifier;
                        case 10:
                                // instanceof
-                               if ((data[++index] == 'n') && (data[++index] == 's') && (data[++index] == 't') && (data[++index] == 'a')
-                                               && (data[++index] == 'n') && (data[++index] == 'c') && (data[++index] == 'e') && (data[++index] == 'o')
+                               if ((data[++index] == 'n') && (data[++index] == 's')
+                                               && (data[++index] == 't') && (data[++index] == 'a')
+                                               && (data[++index] == 'n') && (data[++index] == 'c')
+                                               && (data[++index] == 'e') && (data[++index] == 'o')
                                                && (data[++index] == 'f'))
                                        return TokenNameinstanceof;
-                               if ((data[index] == 'm') && (data[++index] == 'p') && (data[++index] == 'l') && (data[++index] == 'e')
-                                               && (data[++index] == 'm') && (data[++index] == 'e') && (data[++index] == 'n') && (data[++index] == 't')
+                               if ((data[index] == 'm') && (data[++index] == 'p')
+                                               && (data[++index] == 'l') && (data[++index] == 'e')
+                                               && (data[++index] == 'm') && (data[++index] == 'e')
+                                               && (data[++index] == 'n') && (data[++index] == 't')
                                                && (data[++index] == 's'))
                                        return TokenNameimplements;
                                return TokenNameIdentifier;
                        case 12:
-                               if ((data[++index] == 'n') && (data[++index] == 'c') && (data[++index] == 'l') && (data[++index] == 'u')
-                                               && (data[++index] == 'd') && (data[++index] == 'e') && (data[++index] == '_') && (data[++index] == 'o')
-                                               && (data[++index] == 'n') && (data[++index] == 'c') && (data[++index] == 'e'))
+                               if ((data[++index] == 'n') && (data[++index] == 'c')
+                                               && (data[++index] == 'l') && (data[++index] == 'u')
+                                               && (data[++index] == 'd') && (data[++index] == 'e')
+                                               && (data[++index] == '_') && (data[++index] == 'o')
+                                               && (data[++index] == 'n') && (data[++index] == 'c')
+                                               && (data[++index] == 'e'))
                                        return TokenNameinclude_once;
                                return TokenNameIdentifier;
                        }
@@ -3284,7 +3549,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                case 'l':
                        // list
                        if (length == 4) {
-                               if ((data[++index] == 'i') && (data[++index] == 's') && (data[++index] == 't')) {
+                               if ((data[++index] == 'i') && (data[++index] == 's')
+                                               && (data[++index] == 't')) {
                                        return TokenNamelist;
                                }
                        }
@@ -3296,12 +3562,12 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                if ((data[++index] == 'e') && (data[++index] == 'w'))
                                        return TokenNamenew;
                                return TokenNameIdentifier;
-                       // case 4 :
-                       // if ((data[++index] == 'u') && (data[++index] == 'l')
-                       // && (data[++index] == 'l'))
-                       // return TokenNamenull;
-                       // else
-                       // return TokenNameIdentifier;
+                               // case 4 :
+                               // if ((data[++index] == 'u') && (data[++index] == 'l')
+                               // && (data[++index] == 'l'))
+                               // return TokenNamenull;
+                               // else
+                               // return TokenNameIdentifier;
                        }
                        return TokenNameIdentifier;
                case 'o':
@@ -3331,25 +3597,30 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // print public private protected
                        switch (length) {
                        case 5:
-                               if ((data[++index] == 'r') && (data[++index] == 'i') && (data[++index] == 'n') && (data[++index] == 't')) {
+                               if ((data[++index] == 'r') && (data[++index] == 'i')
+                                               && (data[++index] == 'n') && (data[++index] == 't')) {
                                        return TokenNameprint;
                                }
                                return TokenNameIdentifier;
                        case 6:
-                               if ((data[++index] == 'u') && (data[++index] == 'b') && (data[++index] == 'l') && (data[++index] == 'i')
+                               if ((data[++index] == 'u') && (data[++index] == 'b')
+                                               && (data[++index] == 'l') && (data[++index] == 'i')
                                                && (data[++index] == 'c')) {
                                        return TokenNamepublic;
                                }
                                return TokenNameIdentifier;
                        case 7:
-                               if ((data[++index] == 'r') && (data[++index] == 'i') && (data[++index] == 'v') && (data[++index] == 'a')
+                               if ((data[++index] == 'r') && (data[++index] == 'i')
+                                               && (data[++index] == 'v') && (data[++index] == 'a')
                                                && (data[++index] == 't') && (data[++index] == 'e')) {
                                        return TokenNameprivate;
                                }
                                return TokenNameIdentifier;
                        case 9:
-                               if ((data[++index] == 'r') && (data[++index] == 'o') && (data[++index] == 't') && (data[++index] == 'e')
-                                               && (data[++index] == 'c') && (data[++index] == 't') && (data[++index] == 'e') && (data[++index] == 'd')) {
+                               if ((data[++index] == 'r') && (data[++index] == 'o')
+                                               && (data[++index] == 't') && (data[++index] == 'e')
+                                               && (data[++index] == 'c') && (data[++index] == 't')
+                                               && (data[++index] == 'e') && (data[++index] == 'd')) {
                                        return TokenNameprotected;
                                }
                                return TokenNameIdentifier;
@@ -3358,19 +3629,24 @@ public class Scanner implements IScanner, ITerminalSymbols {
                case 'r':
                        // return require require_once
                        if (length == 6) {
-                               if ((data[++index] == 'e') && (data[++index] == 't') && (data[++index] == 'u') && (data[++index] == 'r')
+                               if ((data[++index] == 'e') && (data[++index] == 't')
+                                               && (data[++index] == 'u') && (data[++index] == 'r')
                                                && (data[++index] == 'n')) {
                                        return TokenNamereturn;
                                }
                        } else if (length == 7) {
-                               if ((data[++index] == 'e') && (data[++index] == 'q') && (data[++index] == 'u') && (data[++index] == 'i')
+                               if ((data[++index] == 'e') && (data[++index] == 'q')
+                                               && (data[++index] == 'u') && (data[++index] == 'i')
                                                && (data[++index] == 'r') && (data[++index] == 'e')) {
                                        return TokenNamerequire;
                                }
                        } else if (length == 12) {
-                               if ((data[++index] == 'e') && (data[++index] == 'q') && (data[++index] == 'u') && (data[++index] == 'i')
-                                               && (data[++index] == 'r') && (data[++index] == 'e') && (data[++index] == '_') && (data[++index] == 'o')
-                                               && (data[++index] == 'n') && (data[++index] == 'c') && (data[++index] == 'e')) {
+                               if ((data[++index] == 'e') && (data[++index] == 'q')
+                                               && (data[++index] == 'u') && (data[++index] == 'i')
+                                               && (data[++index] == 'r') && (data[++index] == 'e')
+                                               && (data[++index] == '_') && (data[++index] == 'o')
+                                               && (data[++index] == 'n') && (data[++index] == 'c')
+                                               && (data[++index] == 'e')) {
                                        return TokenNamerequire_once;
                                }
                        }
@@ -3379,18 +3655,21 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // self static switch
                        switch (length) {
                        // case 4:
-                       // if ((data[++index] == 'e') && (data[++index] == 'l') && (data[++index]
+                       // if ((data[++index] == 'e') && (data[++index] == 'l') &&
+                       // (data[++index]
                        // == 'f')) {
                        // return TokenNameself;
                        // }
                        // return TokenNameIdentifier;
                        case 6:
                                if (data[++index] == 't')
-                                       if ((data[++index] == 'a') && (data[++index] == 't') && (data[++index] == 'i') && (data[++index] == 'c')) {
+                                       if ((data[++index] == 'a') && (data[++index] == 't')
+                                                       && (data[++index] == 'i') && (data[++index] == 'c')) {
                                                return TokenNamestatic;
                                        } else
                                                return TokenNameIdentifier;
-                               else if ((data[index] == 'w') && (data[++index] == 'i') && (data[++index] == 't') && (data[++index] == 'c')
+                               else if ((data[index] == 'w') && (data[++index] == 'i')
+                                               && (data[++index] == 't') && (data[++index] == 'c')
                                                && (data[++index] == 'h'))
                                        return TokenNameswitch;
                        }
@@ -3401,14 +3680,15 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        case 3:
                                if ((data[++index] == 'r') && (data[++index] == 'y'))
                                        return TokenNametry;
-                       // case 4 :
-                       // if ((data[++index] == 'r') && (data[++index] == 'u')
-                       // && (data[++index] == 'e'))
-                       // return TokenNametrue;
-                       // else
-                       // return TokenNameIdentifier;
+                               // case 4 :
+                               // if ((data[++index] == 'r') && (data[++index] == 'u')
+                               // && (data[++index] == 'e'))
+                               // return TokenNametrue;
+                               // else
+                               // return TokenNameIdentifier;
                        case 5:
-                               if ((data[++index] == 'h') && (data[++index] == 'r') && (data[++index] == 'o') && (data[++index] == 'w'))
+                               if ((data[++index] == 'h') && (data[++index] == 'r')
+                                               && (data[++index] == 'o') && (data[++index] == 'w'))
                                        return TokenNamethrow;
                        }
                        return TokenNameIdentifier;
@@ -3419,7 +3699,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                if ((data[++index] == 's') && (data[++index] == 'e'))
                                        return TokenNameuse;
                        case 5:
-                               if ((data[++index] == 'n') && (data[++index] == 's') && (data[++index] == 'e') && (data[++index] == 't'))
+                               if ((data[++index] == 'n') && (data[++index] == 's')
+                                               && (data[++index] == 'e') && (data[++index] == 't'))
                                        return TokenNameunset;
                        }
                        return TokenNameIdentifier;
@@ -3435,14 +3716,15 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        // while
                        switch (length) {
                        case 5:
-                               if ((data[++index] == 'h') && (data[++index] == 'i') && (data[++index] == 'l') && (data[++index] == 'e'))
+                               if ((data[++index] == 'h') && (data[++index] == 'i')
+                                               && (data[++index] == 'l') && (data[++index] == 'e'))
                                        return TokenNamewhile;
-                       // case 6:if ( (data[++index] =='i') && (data[++index]=='d') &&
-                       // (data[++index]=='e') && (data[++index]=='f')&&
-                       // (data[++index]=='p'))
-                       // return TokenNamewidefp ;
-                       // else
-                       // return TokenNameIdentifier;
+                               // case 6:if ( (data[++index] =='i') && (data[++index]=='d') &&
+                               // (data[++index]=='e') && (data[++index]=='f')&&
+                               // (data[++index]=='p'))
+                               // return TokenNamewidefp ;
+                               // else
+                               // return TokenNameIdentifier;
                        }
                        return TokenNameIdentifier;
                case 'x':
@@ -3515,19 +3797,23 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                        // consume next character
                                                        unicodeAsBackSlash = false;
                                                        currentCharacter = source[currentPosition++];
-                                                       // if (((currentCharacter = source[currentPosition++]) == '\\')
+                                                       // if (((currentCharacter =
+                                                       // source[currentPosition++]) == '\\')
                                                        // && (source[currentPosition] == 'u')) {
                                                        // getNextUnicodeChar();
                                                        // } else {
                                                        // if (withoutUnicodePtr != 0) {
-                                                       // withoutUnicodeBuffer[++withoutUnicodePtr] = currentCharacter;
+                                                       // withoutUnicodeBuffer[++withoutUnicodePtr] =
+                                                       // currentCharacter;
                                                        // }
                                                        // }
-                                                       if ((currentCharacter == '-') || (currentCharacter == '+')) {
+                                                       if ((currentCharacter == '-')
+                                                                       || (currentCharacter == '+')) {
                                                                // consume next character
                                                                unicodeAsBackSlash = false;
                                                                currentCharacter = source[currentPosition++];
-                                                               // if (((currentCharacter = source[currentPosition++]) == '\\')
+                                                               // if (((currentCharacter =
+                                                               // source[currentPosition++]) == '\\')
                                                                // && (source[currentPosition] == 'u')) {
                                                                // getNextUnicodeChar();
                                                                // } else {
@@ -3560,7 +3846,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                ;
                // if ((!dotPrefix) && (getNextChar('l', 'L') >= 0))
                // return TokenNameLongLiteral;
-               if ((!dotPrefix) && (getNextChar('.'))) { // decimal part that can be empty
+               if ((!dotPrefix) && (getNextChar('.'))) { // decimal part that can be
+                                                                                                       // empty
                        while (getNextCharAsDigit()) {
                        }
                        ;
@@ -3610,7 +3897,7 @@ public class Scanner implements IScanner, ITerminalSymbols {
 
        /**
         * Search the line number corresponding to a specific position
-        *
+        * 
         */
        public final int getLineNumber(int position) {
                if (lineEnds == null)
@@ -3676,21 +3963,25 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        middle = new char[0];
                }
                char end[] = new char[source.length - (currentPosition - 1)];
-               System.arraycopy(source, (currentPosition - 1) + 1, end, 0, source.length - (currentPosition - 1) - 1);
-               return new String(front) + "\n===============================\nStarts here -->" //$NON-NLS-1$
-                               + new String(middle) + "<-- Ends here\n===============================\n" //$NON-NLS-1$
+               System.arraycopy(source, (currentPosition - 1) + 1, end, 0,
+                               source.length - (currentPosition - 1) - 1);
+               return new String(front)
+                               + "\n===============================\nStarts here -->" //$NON-NLS-1$
+                               + new String(middle)
+                               + "<-- Ends here\n===============================\n" //$NON-NLS-1$
                                + new String(end);
        }
 
        public final String toStringAction(int act) {
                switch (act) {
                case TokenNameERROR:
-                       return "ScannerError"; // + new String(getCurrentTokenSource()) + ")";
-               // //$NON-NLS-1$
+                       return "ScannerError"; // + new String(getCurrentTokenSource()) +
+                                                                       // ")";
+                       // //$NON-NLS-1$
                case TokenNameINLINE_HTML:
                        return "Inline-HTML(" + new String(getCurrentTokenSource()) + ")"; //$NON-NLS-1$ //$NON-NLS-2$
-               case    TokenNameECHO_INVISIBLE:
-                       //0-length token
+               case TokenNameECHO_INVISIBLE:
+                       // 0-length token
                        return "";
                case TokenNameIdentifier:
                        return "Identifier(" + new String(getCurrentTokenSource()) + ")"; //$NON-NLS-1$ //$NON-NLS-2$
@@ -3722,8 +4013,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        return "continue"; //$NON-NLS-1$
                case TokenNamedefault:
                        return "default"; //$NON-NLS-1$
-               // case TokenNamedefine :
-               // return "define"; //$NON-NLS-1$
+                       // case TokenNamedefine :
+                       // return "define"; //$NON-NLS-1$
                case TokenNamedo:
                        return "do"; //$NON-NLS-1$
                case TokenNameecho:
@@ -3746,8 +4037,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        return "exit";
                case TokenNameextends:
                        return "extends"; //$NON-NLS-1$
-               // case TokenNamefalse :
-               // return "false"; //$NON-NLS-1$
+                       // case TokenNamefalse :
+                       // return "false"; //$NON-NLS-1$
                case TokenNamefinal:
                        return "final"; //$NON-NLS-1$
                case TokenNamefor:
@@ -3776,8 +4067,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        return "list"; //$NON-NLS-1$
                case TokenNamenew:
                        return "new"; //$NON-NLS-1$
-               // case TokenNamenull :
-               // return "null"; //$NON-NLS-1$
+                       // case TokenNamenull :
+                       // return "null"; //$NON-NLS-1$
                case TokenNameor:
                        return "OR"; //$NON-NLS-1$
                case TokenNameprint:
@@ -3800,8 +4091,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        return "static"; //$NON-NLS-1$
                case TokenNameswitch:
                        return "switch"; //$NON-NLS-1$
-               // case TokenNametrue :
-               // return "true"; //$NON-NLS-1$
+                       // case TokenNametrue :
+                       // return "true"; //$NON-NLS-1$
                case TokenNameunset:
                        return "unset"; //$NON-NLS-1$
                case TokenNamevar:
@@ -3810,8 +4101,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        return "while"; //$NON-NLS-1$
                case TokenNamexor:
                        return "XOR"; //$NON-NLS-1$
-               // case TokenNamethis :
-               // return "$this"; //$NON-NLS-1$
+                       // case TokenNamethis :
+                       // return "$this"; //$NON-NLS-1$
                case TokenNameIntegerLiteral:
                        return "Integer(" + new String(getCurrentTokenSource()) + ")"; //$NON-NLS-1$ //$NON-NLS-2$
                case TokenNameDoubleLiteral:
@@ -3824,10 +4115,10 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        return "StringInterpolated(" + new String(getCurrentTokenSource()) + ")"; //$NON-NLS-1$ //$NON-NLS-2$
                case TokenNameEncapsedString0:
                        return "`"; //$NON-NLS-1$
-               // case TokenNameEncapsedString1:
-               // return "\'"; //$NON-NLS-1$
-               // case TokenNameEncapsedString2:
-               // return "\""; //$NON-NLS-1$
+                       // case TokenNameEncapsedString1:
+                       // return "\'"; //$NON-NLS-1$
+                       // case TokenNameEncapsedString2:
+                       // return "\""; //$NON-NLS-1$
                case TokenNameSTRING:
                        return "STRING_DQ(" + new String(getCurrentTokenSource()) + ")"; //$NON-NLS-1$ //$NON-NLS-2$
                case TokenNameHEREDOC:
@@ -3950,9 +4241,9 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        return "COMMENT_BLOCK(" + new String(getCurrentTokenSource()) + ")"; //$NON-NLS-1$
                case TokenNameCOMMENT_PHPDOC:
                        return "COMMENT_PHPDOC(" + new String(getCurrentTokenSource()) + ")"; //$NON-NLS-1$
-               // case TokenNameHTML :
-               // return "HTML(" + new String(getCurrentTokenSource()) + ")";
-               // //$NON-NLS-1$
+                       // case TokenNameHTML :
+                       // return "HTML(" + new String(getCurrentTokenSource()) + ")";
+                       // //$NON-NLS-1$
                case TokenNameFILE:
                        return "__FILE__"; //$NON-NLS-1$
                case TokenNameLINE:
@@ -3986,17 +4277,23 @@ public class Scanner implements IScanner, ITerminalSymbols {
                this(tokenizeComments, tokenizeWhiteSpace, false);
        }
 
-       public Scanner(boolean tokenizeComments, boolean tokenizeWhiteSpace, boolean checkNonExternalizedStringLiterals) {
-               this(tokenizeComments, tokenizeWhiteSpace, checkNonExternalizedStringLiterals, false);
+       public Scanner(boolean tokenizeComments, boolean tokenizeWhiteSpace,
+                       boolean checkNonExternalizedStringLiterals) {
+               this(tokenizeComments, tokenizeWhiteSpace,
+                               checkNonExternalizedStringLiterals, false);
        }
 
-       public Scanner(boolean tokenizeComments, boolean tokenizeWhiteSpace, boolean checkNonExternalizedStringLiterals,
-                       boolean assertMode) {
-               this(tokenizeComments, tokenizeWhiteSpace, checkNonExternalizedStringLiterals, assertMode, false, null, null, true);
+       public Scanner(boolean tokenizeComments, boolean tokenizeWhiteSpace,
+                       boolean checkNonExternalizedStringLiterals, boolean assertMode) {
+               this(tokenizeComments, tokenizeWhiteSpace,
+                               checkNonExternalizedStringLiterals, assertMode, false, null,
+                               null, true);
        }
 
-       public Scanner(boolean tokenizeComments, boolean tokenizeWhiteSpace, boolean checkNonExternalizedStringLiterals,
-                       boolean assertMode, boolean tokenizeStrings, char[][] taskTags, char[][] taskPriorities, boolean isTaskCaseSensitive) {
+       public Scanner(boolean tokenizeComments, boolean tokenizeWhiteSpace,
+                       boolean checkNonExternalizedStringLiterals, boolean assertMode,
+                       boolean tokenizeStrings, char[][] taskTags,
+                       char[][] taskPriorities, boolean isTaskCaseSensitive) {
                this.eofPosition = Integer.MAX_VALUE;
                this.tokenizeComments = tokenizeComments;
                this.tokenizeWhiteSpace = tokenizeWhiteSpace;
@@ -4049,7 +4346,9 @@ public class Scanner implements IScanner, ITerminalSymbols {
                }
                this.wasNonExternalizedStringLiteral = true;
                if (nonNLSCounter != lineLength) {
-                       System.arraycopy(this.nonNLSStrings, 0, (this.nonNLSStrings = new StringLiteral[nonNLSCounter]), 0, nonNLSCounter);
+                       System.arraycopy(this.nonNLSStrings, 0,
+                                       (this.nonNLSStrings = new StringLiteral[nonNLSCounter]), 0,
+                                       nonNLSCounter);
                }
                currentLine = null;
        }
@@ -4103,29 +4402,37 @@ public class Scanner implements IScanner, ITerminalSymbols {
                        int number = Character.getNumericValue(currentCharacter);
                        if (number >= 0 && number <= 7) {
                                boolean zeroToThreeNot = number > 3;
-                               if (Character.isDigit(currentCharacter = source[currentPosition++])) {
+                               if (Character
+                                               .isDigit(currentCharacter = source[currentPosition++])) {
                                        int digit = Character.getNumericValue(currentCharacter);
                                        if (digit >= 0 && digit <= 7) {
                                                number = (number * 8) + digit;
-                                               if (Character.isDigit(currentCharacter = source[currentPosition++])) {
-                                                       if (zeroToThreeNot) { // has read \NotZeroToThree OctalDigit
+                                               if (Character
+                                                               .isDigit(currentCharacter = source[currentPosition++])) {
+                                                       if (zeroToThreeNot) { // has read \NotZeroToThree
+                                                                                                       // OctalDigit
                                                                // Digit --> ignore last character
                                                                currentPosition--;
                                                        } else {
-                                                               digit = Character.getNumericValue(currentCharacter);
-                                                               if (digit >= 0 && digit <= 7) { // has read \ZeroToThree
+                                                               digit = Character
+                                                                               .getNumericValue(currentCharacter);
+                                                               if (digit >= 0 && digit <= 7) { // has read
+                                                                                                                               // \ZeroToThree
                                                                        // OctalDigit OctalDigit
                                                                        number = (number * 8) + digit;
-                                                               } else { // has read \ZeroToThree OctalDigit NonOctalDigit
+                                                               } else { // has read \ZeroToThree OctalDigit
+                                                                                       // NonOctalDigit
                                                                        // --> ignore last character
                                                                        currentPosition--;
                                                                }
                                                        }
-                                               } else { // has read \OctalDigit NonDigit--> ignore last
+                                               } else { // has read \OctalDigit NonDigit--> ignore
+                                                                       // last
                                                        // character
                                                        currentPosition--;
                                                }
-                                       } else { // has read \OctalDigit NonOctalDigit--> ignore last
+                                       } else { // has read \OctalDigit NonOctalDigit--> ignore
+                                                               // last
                                                // character
                                                currentPosition--;
                                        }
@@ -4146,12 +4453,14 @@ public class Scanner implements IScanner, ITerminalSymbols {
                char[] src = this.source;
 
                // only look for newer task: tags
-               if (this.foundTaskCount > 0 && this.foundTaskPositions[this.foundTaskCount - 1][0] >= commentStart) {
+               if (this.foundTaskCount > 0
+                               && this.foundTaskPositions[this.foundTaskCount - 1][0] >= commentStart) {
                        return;
                }
                int foundTaskIndex = this.foundTaskCount;
                char previous = src[commentStart + 1]; // should be '*' or '/'
-               nextChar: for (int i = commentStart + 2; i < commentEnd && i < this.eofPosition; i++) {
+               nextChar: for (int i = commentStart + 2; i < commentEnd
+                               && i < this.eofPosition; i++) {
                        char[] tag = null;
                        char[] priority = null;
                        // check for tag occurrence only if not ambiguous with javadoc tag
@@ -4162,7 +4471,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                        if (tagLength == 0)
                                                continue nextTag;
 
-                                       // ensure tag is not leaded with letter if tag starts with a letter
+                                       // ensure tag is not leaded with letter if tag starts with a
+                                       // letter
                                        if (Scanner.isPHPIdentifierStart(tag[0])) {
                                                if (Scanner.isPHPIdentifierPart(previous)) {
                                                        continue nextTag;
@@ -4174,17 +4484,24 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                int x = i + t;
                                                if (x >= this.eofPosition || x >= commentEnd)
                                                        continue nextTag;
-                                               if ((sc = src[i + t]) != (tc = tag[t])) { // case sensitive check
-                                                       if (this.isTaskCaseSensitive || (Character.toLowerCase(sc) != Character.toLowerCase(tc))) { // case
+                                               if ((sc = src[i + t]) != (tc = tag[t])) { // case
+                                                                                                                                       // sensitive
+                                                                                                                                       // check
+                                                       if (this.isTaskCaseSensitive
+                                                                       || (Character.toLowerCase(sc) != Character
+                                                                                       .toLowerCase(tc))) { // case
                                                                // insensitive
                                                                // check
                                                                continue nextTag;
                                                        }
                                                }
                                        }
-                                       // ensure tag is not followed with letter if tag finishes with a
+                                       // ensure tag is not followed with letter if tag finishes
+                                       // with a
                                        // letter
-                                       if (i + tagLength < commentEnd && Scanner.isPHPIdentifierPart(src[i + tagLength - 1])) {
+                                       if (i + tagLength < commentEnd
+                                                       && Scanner.isPHPIdentifierPart(src[i + tagLength
+                                                                       - 1])) {
                                                if (Scanner.isPHPIdentifierPart(src[i + tagLength]))
                                                        continue nextTag;
                                        }
@@ -4194,21 +4511,40 @@ public class Scanner implements IScanner, ITerminalSymbols {
                                                this.foundTaskPriorities = new char[5][];
                                                this.foundTaskPositions = new int[5][];
                                        } else if (this.foundTaskCount == this.foundTaskTags.length) {
-                                               System.arraycopy(this.foundTaskTags, 0, this.foundTaskTags = new char[this.foundTaskCount * 2][], 0,
-                                                               this.foundTaskCount);
-                                               System.arraycopy(this.foundTaskMessages, 0, this.foundTaskMessages = new char[this.foundTaskCount * 2][], 0,
-                                                               this.foundTaskCount);
-                                               System.arraycopy(this.foundTaskPriorities, 0, this.foundTaskPriorities = new char[this.foundTaskCount * 2][], 0,
-                                                               this.foundTaskCount);
-                                               System.arraycopy(this.foundTaskPositions, 0, this.foundTaskPositions = new int[this.foundTaskCount * 2][], 0,
-                                                               this.foundTaskCount);
+                                               System
+                                                               .arraycopy(
+                                                                               this.foundTaskTags,
+                                                                               0,
+                                                                               this.foundTaskTags = new char[this.foundTaskCount * 2][],
+                                                                               0, this.foundTaskCount);
+                                               System
+                                                               .arraycopy(
+                                                                               this.foundTaskMessages,
+                                                                               0,
+                                                                               this.foundTaskMessages = new char[this.foundTaskCount * 2][],
+                                                                               0, this.foundTaskCount);
+                                               System
+                                                               .arraycopy(
+                                                                               this.foundTaskPriorities,
+                                                                               0,
+                                                                               this.foundTaskPriorities = new char[this.foundTaskCount * 2][],
+                                                                               0, this.foundTaskCount);
+                                               System
+                                                               .arraycopy(
+                                                                               this.foundTaskPositions,
+                                                                               0,
+                                                                               this.foundTaskPositions = new int[this.foundTaskCount * 2][],
+                                                                               0, this.foundTaskCount);
                                        }
 
-                                       priority = this.taskPriorities != null && itag < this.taskPriorities.length ? this.taskPriorities[itag] : null;
+                                       priority = this.taskPriorities != null
+                                                       && itag < this.taskPriorities.length ? this.taskPriorities[itag]
+                                                       : null;
 
                                        this.foundTaskTags[this.foundTaskCount] = tag;
                                        this.foundTaskPriorities[this.foundTaskCount] = priority;
-                                       this.foundTaskPositions[this.foundTaskCount] = new int[] { i, i + tagLength - 1 };
+                                       this.foundTaskPositions[this.foundTaskCount] = new int[] {
+                                                       i, i + tagLength - 1 };
                                        this.foundTaskMessages[this.foundTaskCount] = CharOperation.NO_CHAR;
                                        this.foundTaskCount++;
                                        i += tagLength - 1; // will be incremented when looping
@@ -4219,11 +4555,14 @@ public class Scanner implements IScanner, ITerminalSymbols {
                }
                for (int i = foundTaskIndex; i < this.foundTaskCount; i++) {
                        // retrieve message start and end positions
-                       int msgStart = this.foundTaskPositions[i][0] + this.foundTaskTags[i].length;
-                       int max_value = i + 1 < this.foundTaskCount ? this.foundTaskPositions[i + 1][0] - 1 : commentEnd - 1;
+                       int msgStart = this.foundTaskPositions[i][0]
+                                       + this.foundTaskTags[i].length;
+                       int max_value = i + 1 < this.foundTaskCount ? this.foundTaskPositions[i + 1][0] - 1
+                                       : commentEnd - 1;
                        // at most beginning of next task
                        if (max_value < msgStart) {
-                               max_value = msgStart; // would only occur if tag is before EOF.
+                               max_value = msgStart; // would only occur if tag is before
+                                                                               // EOF.
                        }
                        int end = -1;
                        char c;
@@ -4263,7 +4602,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
        // chech presence of task: tags
        // public void checkTaskTag(int commentStart, int commentEnd) {
        // // only look for newer task: tags
-       // if (this.foundTaskCount > 0 && this.foundTaskPositions[this.foundTaskCount
+       // if (this.foundTaskCount > 0 &&
+       // this.foundTaskPositions[this.foundTaskCount
        // - 1][0] >= commentStart) {
        // return;
        // }
@@ -4275,7 +4615,8 @@ public class Scanner implements IScanner, ITerminalSymbols {
        // // check for tag occurrence
        // nextTag: for (int itag = 0; itag < this.taskTags.length; itag++) {
        // tag = this.taskTags[itag];
-       // priority = this.taskPriorities != null && itag < this.taskPriorities.length
+       // priority = this.taskPriorities != null && itag <
+       // this.taskPriorities.length
        // ? this.taskPriorities[itag] : null;
        // int tagLength = tag.length;
        // for (int t = 0; t < tagLength; t++) {
@@ -4296,13 +4637,15 @@ public class Scanner implements IScanner, ITerminalSymbols {
        // System.arraycopy(this.foundTaskPriorities, 0, this.foundTaskPriorities =
        // new char[this.foundTaskCount * 2][], 0,
        // this.foundTaskCount);
-       // System.arraycopy(this.foundTaskPositions, 0, this.foundTaskPositions = new
+       // System.arraycopy(this.foundTaskPositions, 0, this.foundTaskPositions =
+       // new
        // int[this.foundTaskCount * 2][], 0,
        // this.foundTaskCount);
        // }
        // this.foundTaskTags[this.foundTaskCount] = tag;
        // this.foundTaskPriorities[this.foundTaskCount] = priority;
-       // this.foundTaskPositions[this.foundTaskCount] = new int[] { i, i + tagLength
+       // this.foundTaskPositions[this.foundTaskCount] = new int[] { i, i +
+       // tagLength
        // - 1 };
        // this.foundTaskMessages[this.foundTaskCount] = CharOperation.NO_CHAR;
        // this.foundTaskCount++;