| 110 | }; |
| 111 | |
| 112 | static txString fxUTF8Buffer(txParser* parser, txInteger character, txString string, txString limit) |
| 113 | { |
| 114 | if (string + mxStringByteLength(character) > limit) { |
| 115 | fxReportMemoryError(parser, parser->states[2].line, "buffer overflow"); |
| 116 | } |
| 117 | return mxStringByteEncode(string, character); |
| 118 | } |
| 119 | |
| 120 | void fxCheckStrictKeyword(txParser* parser) |
| 121 | { |
no test coverage detected