File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed
src/org/opensolaris/opengrok/analysis/clojure Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 27
27
*/
28
28
29
29
package org. opensolaris. opengrok. analysis. clojure;
30
+
30
31
import java. io. IOException;
31
- import java. io. Reader;
32
32
import org. opensolaris. opengrok. analysis. JFlexTokenizer;
33
-
34
33
% %
35
34
%public
36
35
%class ClojureSymbolTokenizer
@@ -45,6 +44,12 @@ super(in);
45
44
46
45
%{
47
46
private int nestedComment;
47
+
48
+ @Override
49
+ public void reset() throws IOException {
50
+ super . reset();
51
+ nestedComment = 0 ;
52
+ }
48
53
%}
49
54
50
55
%state STRING COMMENT SCOMMENT
Original file line number Diff line number Diff line change 27
27
*/
28
28
29
29
package org. opensolaris. opengrok. analysis. clojure;
30
+
30
31
import org. opensolaris. opengrok. analysis. JFlexXrefSimple;
31
- import java. io. IOException;
32
- import java. io. Writer;
33
- import java. io. Reader;
34
32
import org. opensolaris. opengrok. web. HtmlConsts;
35
33
import org. opensolaris. opengrok. web. Util;
36
34
% %
You can’t perform that action at this time.
0 commit comments