mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-19 16:54:08 +10:00
Script tests re-added, all tests can run under gdb
Also fixed a minor bug with printing, and removed the ability to configure the parser. Added and updated QUICKSTART.md as a quick way to get people started. There's some broken scripts under 'scripts/' that require functions to work properly.
This commit is contained in:
@@ -14,14 +14,8 @@ typedef struct Toy_Parser {
|
||||
|
||||
bool error;
|
||||
bool panic; //currently processing an error
|
||||
|
||||
//configs
|
||||
bool removeAssert;
|
||||
} Toy_Parser;
|
||||
|
||||
TOY_API void Toy_bindParser(Toy_Parser* parser, Toy_Lexer* lexer);
|
||||
TOY_API Toy_Ast* Toy_scanParser(Toy_Bucket** bucketHandle, Toy_Parser* parser);
|
||||
TOY_API void Toy_resetParser(Toy_Parser* parser);
|
||||
|
||||
//configure certain options
|
||||
TOY_API void Toy_configureParser(Toy_Parser* parser, bool removeAssert);
|
||||
|
||||
Reference in New Issue
Block a user