Package org.cfeclipse.cfml.editors.partitioner

Examples of org.cfeclipse.cfml.editors.partitioner.FakeTagData


    int c = scanner.read();
    int nextC = scanner.read();
    int i = 0;
    scanner.unread();
    if ((c) == fEndSequence[0] && nextC == ICharacterScanner.EOF) {
      FakeTagData data = null;
      data = new FakeTagData(fPartitionType, "}", fMidPartitionType, fPartitionType, "cfscript");
      return new Token(data);
    } else if (nextC == ICharacterScanner.EOF) {
      scanner.unread();
      nextC = scanner.read();
      while (nextC == '\n' || nextC == ' ' || nextC == '\t' || nextC == '\r' || nextC == fEndSequence[0]) {
        if (nextC == fEndSequence[0]) {
          for (int j = i; j >= 0; j--) {
            scanner.read();
          }
          FakeTagData data = null;
          data = new FakeTagData(fPartitionType, "}", fMidPartitionType, fPartitionType, "cfscript");
          return new Token(data);
        }
        scanner.unread();
        scanner.unread();
        if (scanner.getColumn() == -1) {
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.editors.partitioner.FakeTagData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.