Package org.eclipse.php.internal.core.ast.nodes

Examples of org.eclipse.php.internal.core.ast.nodes.Comment


        // fill the offset table
        this.offsets = new int[count];
        for (int i = 0, k = 0; i < nComments; i++) {
          Object curr = this.commentList.get(i);
          if (isLineComment(curr)) {
            Comment comment = (Comment) curr;
            this.offsets[k++] = comment.getStart()
                + comment.getLength();
          }
        }
      } else {
        this.offsets = EMPTY_INT_ARRAY;
      }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.ast.nodes.Comment

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.