(state)
| 391 | |
| 392 | // functions to test the current context of the state |
| 393 | function isInXmlBlock(state) { return isIn(state, "tag"); } |
| 394 | function isInXmlAttributeBlock(state) { return isIn(state, "attribute"); } |
| 395 | function isInXmlConstructor(state) { return isIn(state, "xmlconstructor"); } |
| 396 | function isInString(state) { return isIn(state, "string"); } |
no test coverage detected