(type, stream, state)
| 285 | return attrState(type, stream, state); |
| 286 | } |
| 287 | function attrValueState(type, stream, state) { |
| 288 | if (type == "string") return attrContinuedState; |
| 289 | if (type == "word" && Kludges.allowUnquoted) {setStyle = "string"; return attrState;} |
| 290 | setStyle = "error"; |
| 291 | return attrState(type, stream, state); |
| 292 | } |
| 293 | function attrContinuedState(type, stream, state) { |
| 294 | if (type == "string") return attrContinuedState; |
| 295 | return attrState(type, stream, state); |
nothing calls this directly
no test coverage detected