Package com.aptana.editor.coffee.parsing

Examples of com.aptana.editor.coffee.parsing.CoffeeCommentNode


          comment.length() - 1);
      this.token(Terminals.TERMINATOR, "\n", 1);
    }
    // TODO Does this properly chop down the source chunk so it doesn't
    // point to underlying char array from fCode?
    this.fComments.add(new CoffeeCommentNode(comment.substring(addOffset),
        startOffset, startOffset + comment.length()));
    this.fLine += count(comment, "\n");
    return comment.length();
  }
View Full Code Here

TOP

Related Classes of com.aptana.editor.coffee.parsing.CoffeeCommentNode

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.