Removed test runner, because SDL is needed

This commit is contained in:
2022-11-26 16:38:44 +00:00
parent 5b4f706426
commit f132ca6937
3 changed files with 2 additions and 25 deletions

View File

@@ -5,8 +5,6 @@
#include "literal_dictionary.h"
#include "interpreter.h"
#include "core_common.h"
#define OPAQUE_TAG_ENGINE_NODE 1
//forward declare
@@ -16,7 +14,7 @@ typedef void (*EngineNodeCallback)(void*);
//the node object, which forms a tree
typedef struct _engineNode {
//function for releasing memory
EngineNodeCallback freeMemory;
EngineNodeCallback freeMemory; //TODO: remove this, not needed
//toy functions, stored in a dict for flexibility
LiteralDictionary* functions;