blob: 59a0925bf8e20d4fe4548ff0e8cae2f50c214e06 [file] [log] [blame]
package org.eclipse.dltk.javascript.internal.ui.text;
public class Token {
String context;
int start;
int textLength;
int length;
String tagName;
public Token(String context, int start, int textLength, int length,
String currentTagName) {
this.context=context;
this.start=start;
this.tagName=currentTagName;
this.textLength=textLength;
}
}