-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dedicated parsing into an AST index.
Creating an AST is significantly faster than the equivalent `jsonv::parse` call (approximately 10x speedup). This completely removes the older `tokenizer` structure and replaces it was a flat `ast_index` structure. This commit introduces #145, which calls to revisit `parse_options` and the associated `parse_error`. Now that the parse phase and extraction to a JSON `value` are separate, the old configuration options make less sense. This also enables work on #150, which calls to extract directly from source text. - Fixes #147 - Fixes #96 through `ast_node::integer` and `ast_node::decimal` - Closes #97 by removal of `tokenizer`
- Loading branch information
Showing
53 changed files
with
4,207 additions
and
3,447 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,6 +62,7 @@ nbproject | |
.settings | ||
composer.lock | ||
*.code-workspace | ||
.vscode | ||
|
||
#Cmake | ||
CMakeCache.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.