(parser, c)
| 26883 | } |
| 26884 | |
| 26885 | function beginWhiteSpace (parser, c) { |
| 26886 | if (c === '<') { |
| 26887 | parser.state = S.OPEN_WAKA |
| 26888 | parser.startTagPosition = parser.position |
| 26889 | } else if (not(whitespace, c)) { |
| 26890 | // have to process this as a text node. |
| 26891 | // weird, but happens. |
| 26892 | strictFail(parser, 'Non-whitespace before first tag.') |
| 26893 | parser.textNode = c |
| 26894 | parser.state = S.TEXT |
| 26895 | } |
| 26896 | } |
| 26897 | |
| 26898 | function charAt (chunk, i) { |
| 26899 | var result = '' |
no test coverage detected