Constructor @param reader JspReader this mark belongs to @param inStream current stream for this mark @param name JSP file name
(JspReader reader, char[] inStream, String name)
| 45 | * @param name JSP file name |
| 46 | */ |
| 47 | Mark(JspReader reader, char[] inStream, String name) { |
| 48 | this.ctxt = reader.getJspCompilationContext(); |
| 49 | this.stream = inStream; |
| 50 | this.cursor = 0; |
| 51 | this.line = 1; |
| 52 | this.col = 1; |
| 53 | this.fileName = name; |
| 54 | } |
| 55 | |
| 56 | |
| 57 | /** |
nothing calls this directly
no test coverage detected