(type, stream, state)
| 219 | } |
| 220 | } |
| 221 | function tagNameState(type, stream, state) { |
| 222 | if (type == "word") { |
| 223 | state.tagName = stream.current(); |
| 224 | setStyle = "tag"; |
| 225 | return attrState; |
| 226 | } else { |
| 227 | setStyle = "error"; |
| 228 | return tagNameState; |
| 229 | } |
| 230 | } |
| 231 | function closeTagNameState(type, stream, state) { |
| 232 | if (type == "word") { |
| 233 | var tagName = stream.current(); |
nothing calls this directly
no outgoing calls
no test coverage detected