()
| 121 | } |
| 122 | |
| 123 | func (e *SizeLimitError) Error() string { |
| 124 | return fmt.Sprintf("expression code point size exceeds limit: size: %d, limit %d", e.Size, e.Limit) |
| 125 | } |
| 126 | |
| 127 | // NewBuffer returns an efficient implementation of Buffer for the given text based on the ranges of |
| 128 | // the encoded code points contained within. |
no outgoing calls