(stream, state)
| 153 | } |
| 154 | |
| 155 | function interpolation(stream, state) { |
| 156 | if (stream.match('#{')) { |
| 157 | state.isInterpolating = true; |
| 158 | state.interpolationNesting = 0; |
| 159 | return 'punctuation'; |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | function interpolationContinued(stream, state) { |
| 164 | if (state.isInterpolating) { |