13 lines
275 B
C
13 lines
275 B
C
#include "codegen.h"
|
|
|
|
enum ivy_status try_code_generator(struct ivy_codegen *gen, struct ivy_ast_node *node)
|
|
{
|
|
return IVY_ERR_NOT_SUPPORTED;
|
|
}
|
|
|
|
enum ivy_status try_catch_code_generator(
|
|
struct ivy_codegen *gen, struct ivy_ast_node *node)
|
|
{
|
|
return IVY_ERR_NOT_SUPPORTED;
|
|
}
|