Files
openide/source/com/intellij/lexer/XHtmlHighlightingLexer.java
Maxim Mossienko bccde9c823 el advanced lexing
2005-02-08 13:00:32 +03:00

15 lines
398 B
Java

package com.intellij.lexer;
public class XHtmlHighlightingLexer extends HtmlHighlightingLexer {
public XHtmlHighlightingLexer() {
this(new XmlLexer(),false);
}
protected XHtmlHighlightingLexer(Lexer baseLexer, boolean withEl) {
super(baseLexer,false,withEl);
}
protected boolean isHtmlTagState(int state) {
return state == _XmlLexer.TAG || state == _XmlLexer.END_TAG;
}
}