(type, stream, state)
| 280 | return attrState; |
| 281 | } |
| 282 | function attrEqState(type, stream, state) { |
| 283 | if (type == "equals") return attrValueState; |
| 284 | if (!Kludges.allowMissing) setStyle = "error"; |
| 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;} |
nothing calls this directly
no test coverage detected