view parse.h @ 1:08df60a01bc1

debug flag, handle input with signal
author John W. Eaton <jwe@octave.org>
date Mon, 20 May 2019 13:45:58 -0400
parents dff751fb985c
children b97ffa8e4019
line wrap: on
line source

namespace interpreter
{
  extern bool beg_of_stmt;

  extern void parser_init (void);
  extern void parser_fini (void);

  extern int parse_and_execute (const std::string& line);

  extern void emit_error (const char *msg);

  extern void emit_result (double value);
}