(stream, state)
| 137 | |
| 138 | function inAttribute(quote) { |
| 139 | var closure = function(stream, state) { |
| 140 | while (!stream.eol()) { |
| 141 | if (stream.next() == quote) { |
| 142 | state.tokenize = inTag; |
| 143 | break; |
| 144 | } |
| 145 | } |
| 146 | return "string"; |
| 147 | }; |
| 148 | closure.isInAttribute = true; |
| 149 | return closure; |
| 150 | } |
nothing calls this directly
no outgoing calls
no test coverage detected