16 lines
529 B
C
16 lines
529 B
C
|
|
#ifndef RAVA_REPL_OUTPUT_H
|
||
|
|
#define RAVA_REPL_OUTPUT_H
|
||
|
|
|
||
|
|
#include "repl_types.h"
|
||
|
|
#include "repl_session.h"
|
||
|
|
|
||
|
|
void rava_repl_output_value(RavaValue_t value, RavaVM_t *vm);
|
||
|
|
void rava_repl_output_variable(RavaREPLVariable_t *var);
|
||
|
|
void rava_repl_output_variables(RavaREPLSession_t *session);
|
||
|
|
void rava_repl_output_methods(RavaREPLSession_t *session);
|
||
|
|
void rava_repl_output_classes(RavaREPLSession_t *session);
|
||
|
|
void rava_repl_output_error(const char *type, const char *message);
|
||
|
|
void rava_repl_output_timing(double elapsed_ms);
|
||
|
|
|
||
|
|
#endif
|