annotate parse.h @ 0:dff751fb985c

initial revision
author John W. Eaton <jwe@octave.org>
date Mon, 13 May 2019 09:48:06 -0500
parents
children 08df60a01bc1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 namespace interpreter
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 {
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
3 extern bool beg_of_stmt;
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 extern void parser_init (void);
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 extern void parser_fini (void);
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 extern int parse_and_execute (const std::string& line);
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 extern void emit_result (double value);
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 }