(kind, codePoint, from, to)
| 57964 | } |
| 57965 | |
| 57966 | function createValue(kind, codePoint, from, to) { |
| 57967 | return addRaw({ |
| 57968 | type: 'value', |
| 57969 | kind: kind, |
| 57970 | codePoint: codePoint, |
| 57971 | range: [from, to] |
| 57972 | }); |
| 57973 | } |
| 57974 | |
| 57975 | function createEscaped(kind, codePoint, value, fromOffset) { |
| 57976 | fromOffset = fromOffset || 0; |
no test coverage detected