(startOfLine)
| 248 | } |
| 249 | |
| 250 | function endplugin(startOfLine) { |
| 251 | return function(type) { |
| 252 | if ( |
| 253 | type == "selfclosePlugin" || |
| 254 | type == "endPlugin" |
| 255 | ) |
| 256 | return cont(); |
| 257 | if (type == "endPlugin") {pushContext(curState.pluginName, startOfLine); return cont();} |
| 258 | return cont(); |
| 259 | }; |
| 260 | } |
| 261 | |
| 262 | function endcloseplugin(err) { |
| 263 | return function(type) { |
no test coverage detected