- macros work in the new way (the "right" way?) - added test.py script, with basic test cases. Need to fill out new test builtins.
46 lines
562 B
C
46 lines
562 B
C
|
|
#if defined(DEBUG_BUILD) || defined(TEST_BUILD)
|
|
|
|
#include <assert.h>
|
|
|
|
#include <debug.h>
|
|
|
|
/*#include <evaluate.h>*/
|
|
|
|
/*#include <value/struct.h>*/
|
|
/*#include <value/environment/define.h>*/
|
|
/*#include <value/null/new.h>*/
|
|
|
|
/*#include <gc/dec_external_refcount.h>*/
|
|
|
|
#include "../defines/BUILTIN_PARAMETER_DECLARATION.h"
|
|
#include "../defines/BUILTIN_PARAMETER_PASS_EVALUATE.h"
|
|
|
|
#include "equality.h"
|
|
|
|
struct value* builtin_test_equality(
|
|
BUILTIN_PARAMETER_DECLARATION)
|
|
{
|
|
ENTER;
|
|
|
|
TODO;
|
|
|
|
EXIT;
|
|
/* return retval;*/
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|