go-parsekit/tokenize
Maurice Makaay b9eeac3480 Work in progress on switching to byte stack. Committing to do some performance checks against master. 2019-07-18 08:06:26 +00:00
..
api.go Work in progress on switching to byte stack. Committing to do some performance checks against master. 2019-07-18 08:06:26 +00:00
api_test.go Bytes reader working, now carry on switching to byte reading in the tokenizer code. 2019-07-15 20:03:05 +00:00
assertions_test.go Made all unit tests work again. 2019-07-11 14:55:08 +00:00
callerinfo.go A few small changes used for TOML support. 2019-06-23 12:06:31 +00:00
callerinfo_test.go Optimization round completed (for now :-) All tests successful. 2019-07-11 12:43:57 +00:00
cursor.go Switched to byte input for built-in tokenize.Handler functions. 2019-07-15 22:48:00 +00:00
cursor_test.go Switched to byte input for built-in tokenize.Handler functions. 2019-07-15 22:48:00 +00:00
handler.go Fixed the ModifyDrop() behavior. It worked, but it caused memory build-up in the old implementation. 2019-07-11 14:52:12 +00:00
handler_test.go Made all unit tests work again. 2019-07-11 14:55:08 +00:00
handlers_builtin.go Implemented an efficient M.DropUntilEndOfLine handler, which is now used in the TOML parser for a dramatic speed increase on comment parsing. 2019-07-17 23:51:37 +00:00
handlers_builtin_test.go Yay! First version for which parsing long.toml drops below 100ms! Got an outcome of 93ms. Almost down to BurntSushi's speed level, but still with a generic parser backing. Looking good!! 2019-07-16 23:34:01 +00:00
token.go Optimization round completed (for now :-) All tests successful. 2019-07-11 12:43:57 +00:00
token_test.go Optimization round completed (for now :-) All tests successful. 2019-07-11 12:43:57 +00:00
tokenize.go Removed loop protection code. This is useful, but it puts a performance burden on the code when doing it by keeping track of actual callers through the call stack. Maybe to be reintroduced in a future version with something like a simple counter and a maximum depth-style protection. 2019-07-12 12:33:18 +00:00
tokenizer_test.go Removed loop protection code. This is useful, but it puts a performance burden on the code when doing it by keeping track of actual callers through the call stack. Maybe to be reintroduced in a future version with something like a simple counter and a maximum depth-style protection. 2019-07-12 12:33:18 +00:00
tokenizer_whitebox_test.go Speeding up the code some more. Big step was made by simplifying the cursor, continuing with that in the next commit. 2019-07-12 08:02:04 +00:00