(stream, state)
| 182 | return html(stream, state); |
| 183 | } |
| 184 | function html(stream, state) { |
| 185 | if (stream.match(/^#\{/)) { |
| 186 | state.tokenize = rubyInQuote("}", state.tokenize); |
| 187 | return null; |
| 188 | } |
| 189 | return maybeBackup(stream, state, /[^\\]#\{/, 1, htmlMode.token(stream, state.htmlState)); |
| 190 | } |
| 191 | |
| 192 | function startHtmlLine(lastTokenize) { |
| 193 | return function(stream, state) { |
no test coverage detected