1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-11-27 22:08:15 +02:00
* Extended public API

* Refactored event loop

* Refactored parser

* Fixed unit tests

* Added --dry-run opt

* Added total alloc

* Added profiler

* Fixed driver registration
This commit is contained in:
Tim Voronov
2021-10-16 17:24:54 -04:00
committed by GitHub
parent 77569f3ced
commit bd6463fa29
37 changed files with 6014 additions and 5473 deletions

View File

@@ -8,5 +8,6 @@ var (
ErrVariableNotFound = errors.New("variable not found")
ErrVariableNotUnique = errors.New("variable is already defined")
ErrInvalidToken = errors.New("invalid token")
ErrUnexpectedToken = errors.New("unexpected token")
ErrInvalidDataSource = errors.New("invalid data source")
)