File: parse.h

package info (click to toggle)
octave 10.3.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 145,484 kB
  • sloc: cpp: 335,976; ansic: 82,241; fortran: 20,963; objc: 9,402; sh: 8,756; yacc: 4,392; lex: 4,333; perl: 1,544; java: 1,366; awk: 1,259; makefile: 660; xml: 192
file content (867 lines) | stat: -rw-r--r-- 30,314 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1993-2025 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

#if ! defined (octave_parse_h)
#define octave_parse_h 1

#include "octave-config.h"

#include <cstdio>

#include <deque>
#include <map>
#include <memory>
#include <set>
#include <string>

#include "input.h"
#include "lex.h"
#include "pt-misc.h"
#include "symscope.h"
#include "token.h"

class octave_function;
class octave_user_code;
class octave_user_function;

OCTAVE_BEGIN_NAMESPACE(octave)

class parse_exception;
class separator_list;
class tree;
class tree_anon_fcn_handle;
class tree_arg_size_spec;
class tree_arg_validation;
class tree_arg_validation_fcns;
class tree_args_block_attribute_list;
class tree_args_block_validation_list;
class tree_argument_list;
class tree_arguments_block;
class tree_array_list;
class tree_cell;
class tree_classdef;
class tree_classdef_attribute_list;
class tree_classdef_body;
class tree_classdef_enum_block;
class tree_classdef_enum_list;
class tree_classdef_events_block;
class tree_classdef_event_list;
class tree_classdef_methods_block;
class tree_classdef_method_list;
class tree_classdef_properties_block;
class tree_classdef_property_list;
class tree_classdef_superclass_list;
class tree_colon_expression;
class tree_command;
class tree_constant;
class tree_decl_command;
class tree_decl_init_list;
class tree_expression;
class tree_fcn_handle;
class tree_function_def;
class tree_identifier;
class tree_if_clause;
class tree_if_command;
class tree_if_command_list;
class tree_index_expression;
class tree_matrix;
class tree_matrix;
class tree_parameter_list;
class tree_spmd_command;
class tree_statement;
class tree_statement_list;
class tree_statement_listtree_statement;
class tree_switch_case;
class tree_switch_case_list;
class tree_switch_command;

OCTAVE_END_NAMESPACE(octave)

#include "ovl.h"

// Nonzero means print parser debugging info (-d).
extern int octave_debug;

OCTAVE_BEGIN_NAMESPACE(octave)

class base_parser
{
private:

  class parent_scope_info
  {
  public:

    typedef std::pair<symbol_scope, std::string> value_type;

    typedef std::deque<value_type>::iterator iterator;
    typedef std::deque<value_type>::const_iterator const_iterator;

    typedef std::deque<value_type>::reverse_iterator reverse_iterator;
    typedef std::deque<value_type>::const_reverse_iterator const_reverse_iterator;

    parent_scope_info () = delete;

    parent_scope_info (base_parser& parser)
      : m_parser (parser), m_info (), m_all_names ()
    { }

    OCTAVE_DISABLE_COPY_MOVE (parent_scope_info)

    ~parent_scope_info () = default;

    OCTINTERP_API std::size_t size () const;

    OCTINTERP_API void push (const value_type& elt);

    OCTINTERP_API void push (const symbol_scope& id);

    OCTINTERP_API void pop ();

    OCTINTERP_API bool name_ok (const std::string& name);

    OCTINTERP_API bool name_current_scope (const std::string& name);

    OCTINTERP_API symbol_scope parent_scope () const;

    OCTINTERP_API std::string parent_name () const;

    OCTINTERP_API void clear ();

  private:

    base_parser& m_parser;
    std::deque<value_type> m_info;
    std::set<std::string> m_all_names;
  };

public:

  OCTINTERP_API base_parser (base_lexer& lxr);

  OCTAVE_DISABLE_CONSTRUCT_COPY_MOVE (base_parser)

  virtual ~base_parser ();

  base_lexer& get_lexer () const { return m_lexer; }

  bool at_end_of_input () const { return m_lexer.m_end_of_input; }

  OCTINTERP_API void reset ();

  void classdef_object (const std::shared_ptr<tree_classdef>& obj)
  {
    m_classdef_object = obj;
  }

  std::shared_ptr<tree_classdef> classdef_object () const
  {
    return m_classdef_object;
  }

  OCTINTERP_API void statement_list (std::shared_ptr<tree_statement_list>& lst);

  std::shared_ptr<tree_statement_list> statement_list () const
  {
    return m_stmt_list;
  }

  void parsing_subfunctions (bool flag)
  {
    m_parsing_subfunctions = flag;
  }

  bool parsing_subfunctions () const
  {
    return m_parsing_subfunctions;
  }

  void parsing_local_functions (bool flag)
  {
    m_parsing_local_functions = flag;
  }

  bool parsing_local_functions () const
  {
    return m_parsing_local_functions;
  }

  int curr_fcn_depth () const
  {
    return m_curr_fcn_depth;
  }

  void endfunction_found (bool flag)
  {
    m_endfunction_found = flag;
  }

  bool endfunction_found () const
  {
    return m_endfunction_found;
  }

  // Error messages for mismatched end tokens.
  OCTINTERP_API void
  end_token_error (token *tok, token::end_tok_type expected);

  // Check to see that end tokens are properly matched.
  OCTINTERP_API bool end_token_ok (token *tok, token::end_tok_type expected);

  // Handle pushing symbol table for new function scope.
  OCTINTERP_API bool push_fcn_symtab ();

  // Build a constant.
  OCTINTERP_API tree_constant * make_constant (token *tok);

  OCTINTERP_API tree_black_hole * make_black_hole (token *tilde);

  OCTINTERP_API tree_matrix * make_matrix (tree_argument_list *row);

  OCTINTERP_API tree_matrix *
  append_matrix_row (tree_matrix *matrix, token *sep_tok, tree_argument_list *row);

  OCTINTERP_API tree_cell * make_cell (tree_argument_list *row);

  OCTINTERP_API tree_cell *
  append_cell_row (tree_cell *cell, token *sep_tok, tree_argument_list *row);

  // Build a function handle.
  OCTINTERP_API tree_fcn_handle * make_fcn_handle (token *tok);

  // Build an anonymous function handle.
  OCTINTERP_API tree_anon_fcn_handle *
  make_anon_fcn_handle (token *at_tok, tree_parameter_list *param_list, tree_expression *expr);

  // Build a colon expression.
  OCTINTERP_API tree_expression *
  make_colon_expression (tree_expression *base, token *colon_tok, tree_expression *limit);

  // Build a colon expression.
  OCTINTERP_API tree_expression *
  make_colon_expression (tree_expression *base, token *colon_1_tok, tree_expression *incr, token *colon_2_tok, tree_expression *limit);

  // Build a binary expression.
  OCTINTERP_API tree_expression *
  make_binary_op (tree_expression *op1, token *op_tok, tree_expression *op2);

  // Maybe convert EXPR to a braindead_shortcircuit expression.
  OCTINTERP_API void
  maybe_convert_to_braindead_shortcircuit (tree_expression *&expr);

  // Build a boolean expression.
  OCTINTERP_API tree_expression *
  make_boolean_op (tree_expression *op1, token *op_tok, tree_expression *op2);

  // Build a prefix expression.
  OCTINTERP_API tree_expression *
  make_prefix_op (token *op_tok, tree_expression *op1);

  // Build a postfix expression.
  OCTINTERP_API tree_expression *
  make_postfix_op (tree_expression *op1, token *op_tok);

  // Build an unwind-protect command.
  OCTINTERP_API tree_command *
  make_unwind_command (token *unwind_tok, tree_statement_list *body, token *cleanup_tok, tree_statement_list *cleanup, token *end_tok);

  // Build a try-catch command.
  OCTINTERP_API tree_command *
  make_try_command (token *try_tok, tree_statement_list *body, token *catch_tok, separator_list *catch_sep_list, tree_statement_list *cleanup, token *end_tok);

  // Build a while command.
  OCTINTERP_API tree_command *
  make_while_command (token *while_tok, tree_expression *expr, tree_statement_list *body, token *end_tok);

  // Build a do-until command.
  OCTINTERP_API tree_command *
  make_do_until_command (token *do_tok, tree_statement_list *body, token *until_tok, tree_expression *expr);

  // Build a for command.
  OCTINTERP_API tree_command *
  make_for_command (token *for_tok, token *open_paren, tree_argument_list *lhs, token *eq_tok, tree_expression *expr, token *sep_tok, tree_expression *maxproc, token *close_paren, tree_statement_list *body, token *end_tok);

  // Build a break command.
  OCTINTERP_API tree_command * make_break_command (token *break_tok);

  // Build a continue command.
  OCTINTERP_API tree_command * make_continue_command (token *continue_tok);

  // Build a return command.
  OCTINTERP_API tree_command * make_return_command (token *return_tok);

  // Build an spmd command.

  OCTINTERP_API tree_spmd_command *
  make_spmd_command (token *spmd_tok, tree_statement_list *body, token *end_tok);

  // Start an if command.
  OCTINTERP_API tree_if_command_list *
  start_if_command (tree_if_clause *clause);

  // Finish an if command.
  OCTINTERP_API tree_if_command *
  finish_if_command (tree_if_command_list *list, tree_if_clause *else_clause, token *end_tok);

  // Build an elseif clause.
  OCTINTERP_API tree_if_clause *
  make_if_clause (token *if_tok, separator_list *if_sep_list, tree_expression *expr, tree_statement_list *list);

  OCTINTERP_API tree_if_command_list *
  append_if_clause (tree_if_command_list *list, tree_if_clause *clause);

  // Finish a switch command.
  OCTINTERP_API tree_switch_command *
  finish_switch_command (token *switch_tok, tree_expression *expr, tree_switch_case_list *list, token *end_tok);

  OCTINTERP_API tree_switch_case_list *
  make_switch_case_list (tree_switch_case *switch_case);

  // Build a switch case.
  OCTINTERP_API tree_switch_case *
  make_switch_case (token *case_tok, tree_expression *expr, tree_statement_list *list);

  OCTINTERP_API tree_switch_case *
  make_default_switch_case (token *default_tok, tree_statement_list *list);

  OCTINTERP_API tree_switch_case_list *
  append_switch_case (tree_switch_case_list *list, tree_switch_case *elt);

  // Build an assignment to a variable.
  OCTINTERP_API tree_expression *
  make_assign_op (tree_argument_list *lhs, token *eq_tok, tree_expression *rhs);

  // Define a script.
  OCTINTERP_API void
  make_script (tree_statement_list *cmds, tree_statement *end_script);

  // Handle identifier that is recognized as a function name.
  OCTINTERP_API tree_identifier *
  make_fcn_name (tree_identifier *id);

  // Define a function.
  OCTINTERP_API tree_function_def *
  make_function (token *fcn_tok, tree_parameter_list *ret_list, token *eq_tok, tree_identifier *id, tree_parameter_list *param_list, tree_statement_list *body, tree_statement *end_fcn_stmt);

  // Begin defining a function.
  OCTINTERP_API octave_user_function *
  start_function (tree_identifier *id, tree_parameter_list *param_list, tree_statement_list *body, tree_statement *end_function, const std::string& doc_string);

  // Create a no-op statement for end_function.
  OCTINTERP_API tree_statement *
  make_end (const std::string& type, bool eof, token *tok);

  // Do most of the work for defining a function.
  OCTINTERP_API octave_user_function *
  frob_function (tree_identifier *id, octave_user_function *fcn);

  // Finish defining a function.
  OCTINTERP_API tree_function_def *
  finish_function (token *fcn_tok, tree_parameter_list *ret_list, token *eq_tok, octave_user_function *fcn);

  OCTINTERP_API tree_statement_list *
  append_function_body (tree_statement_list *body, tree_statement_list *list);

  // Make an arguments validation block.
  OCTINTERP_API tree_arguments_block *
  make_arguments_block (token *arguments_tok, tree_args_block_attribute_list *attr_list, tree_args_block_validation_list *validation_list, token *end_tok);

  OCTINTERP_API tree_args_block_attribute_list *
  make_args_attribute_list (tree_identifier *attribute_name);

  // Make an argument validation.
  OCTINTERP_API tree_arg_validation *
  make_arg_validation (tree_arg_size_spec *size_spec, tree_identifier *class_name, tree_arg_validation_fcns *validation_fcns, token *eq_tok = nullptr, tree_expression *default_value = nullptr);

  // Make an argument validation list.
  OCTINTERP_API tree_args_block_validation_list *
  make_args_validation_list (tree_arg_validation *arg_validation);

  // Append an argument validation to an existing list.
  OCTINTERP_API tree_args_block_validation_list *
  append_args_validation_list (tree_args_block_validation_list *list, tree_arg_validation *arg_validation);

  // Make an argument size specification object.
  OCTINTERP_API tree_arg_size_spec *
  make_arg_size_spec (tree_argument_list *size_args);

  // Make a list of argument validation functions.
  OCTINTERP_API tree_arg_validation_fcns *
  make_arg_validation_fcns (tree_argument_list *fcn_args);

  // Reset state after parsing function.
  OCTINTERP_API void
  recover_from_parsing_function ();

  OCTINTERP_API tree_classdef *
  make_classdef (token *tok, tree_classdef_attribute_list *a, tree_identifier *id, tree_classdef_superclass_list *sc, tree_classdef_body *body, token *end_tok);

  OCTINTERP_API tree_classdef_properties_block *
  make_classdef_properties_block (token *tok, tree_classdef_attribute_list *a, tree_classdef_property_list *plist, token *end_tok);

  OCTINTERP_API tree_classdef_property_list *
  make_classdef_property_list (tree_classdef_property *prop);

  OCTINTERP_API tree_classdef_property *
  make_classdef_property (tree_identifier *id, tree_arg_validation *av);

  OCTINTERP_API tree_classdef_property_list *
  append_classdef_property (tree_classdef_property_list *list, tree_classdef_property *elt);

  OCTINTERP_API tree_classdef_methods_block *
  make_classdef_methods_block (token *tok, tree_classdef_attribute_list *a, tree_classdef_method_list *mlist, token *end_tok);

  OCTINTERP_API tree_classdef_events_block *
  make_classdef_events_block (token *tok, tree_classdef_attribute_list *a, tree_classdef_event_list *elist, token *end_tok);

  OCTINTERP_API tree_classdef_event_list *
  make_classdef_event_list (tree_classdef_event *e);

  OCTINTERP_API tree_classdef_event *
  make_classdef_event (tree_identifier *id);

  OCTINTERP_API tree_classdef_event_list *
  append_classdef_event (tree_classdef_event_list *list, tree_classdef_event *elt);

  OCTINTERP_API tree_classdef_enum_block *
  make_classdef_enum_block (token *tok, tree_classdef_attribute_list *a, tree_classdef_enum_list *elist, token *end_tok);

  OCTINTERP_API tree_classdef_enum_list *
  make_classdef_enum_list (tree_classdef_enum *e);

  OCTINTERP_API tree_classdef_enum *
  make_classdef_enum (tree_identifier *id, token *open_paren, tree_expression *expr, token *close_paren);

  OCTINTERP_API tree_classdef_enum_list *
  append_classdef_enum (tree_classdef_enum_list *list, tree_classdef_enum *elt);

  OCTINTERP_API tree_classdef_superclass_list *
  make_classdef_superclass_list (token *lt_tok, tree_classdef_superclass *sc);

  OCTINTERP_API tree_classdef_superclass *
  make_classdef_superclass (token *fqident);

  OCTINTERP_API tree_classdef_superclass_list *
  append_classdef_superclass (tree_classdef_superclass_list *list, token *and_tok, tree_classdef_superclass *elt);

  OCTINTERP_API tree_classdef_attribute_list *
  make_classdef_attribute_list (tree_classdef_attribute *attr);

  OCTINTERP_API tree_classdef_attribute *
  make_classdef_attribute (tree_identifier *id);

  OCTINTERP_API tree_classdef_attribute *
  make_classdef_attribute (tree_identifier *id, token *eq_tok, tree_expression *expr);

  OCTINTERP_API tree_classdef_attribute *
  make_not_classdef_attribute (token *not_tok, tree_identifier *id);

  OCTINTERP_API tree_classdef_attribute_list *
  append_classdef_attribute (tree_classdef_attribute_list *list, token *sep_tok, tree_classdef_attribute *elt);

  OCTINTERP_API tree_classdef_body *
  make_classdef_body (tree_classdef_properties_block *pb);

  OCTINTERP_API tree_classdef_body *
  make_classdef_body (tree_classdef_methods_block *mb);

  OCTINTERP_API tree_classdef_body *
  make_classdef_body (tree_classdef_events_block *evb);

  OCTINTERP_API tree_classdef_body *
  make_classdef_body  (tree_classdef_enum_block *enb);

  OCTINTERP_API tree_classdef_body *
  append_classdef_properties_block (tree_classdef_body *body, tree_classdef_properties_block *block);

  OCTINTERP_API tree_classdef_body *
  append_classdef_methods_block (tree_classdef_body *body, tree_classdef_methods_block *block);

  OCTINTERP_API tree_classdef_body *
  append_classdef_events_block (tree_classdef_body *body, tree_classdef_events_block *block);

  OCTINTERP_API tree_classdef_body *
  append_classdef_enum_block (tree_classdef_body *body, tree_classdef_enum_block *block);

  OCTINTERP_API octave_user_function *
  start_classdef_external_method (tree_identifier *id, tree_parameter_list *pl = nullptr);

  OCTINTERP_API tree_function_def *
  finish_classdef_external_method (octave_user_function *fcn, tree_parameter_list *ret_list = nullptr, token *eq_tok = nullptr);

  OCTINTERP_API tree_classdef_method_list *
  make_classdef_method_list (tree_function_def *fcn_def);

  OCTINTERP_API tree_classdef_method_list *
  append_classdef_method (tree_classdef_method_list *list, tree_function_def *fcn_def);

  OCTINTERP_API bool
  finish_classdef_file (tree_classdef *cls, tree_statement_list *local_fcns, token *eof_tok);

  // Make a word list command.
  OCTINTERP_API tree_index_expression *
  make_word_list_command (tree_expression *expr, tree_argument_list *args);

  // Make an index expression.
  OCTINTERP_API tree_index_expression *
  make_index_expression (tree_expression *expr, token *open_paren, tree_argument_list *args, token *close_paren, char type);

  // Make an indirect reference expression.
  OCTINTERP_API tree_index_expression *
  make_indirect_ref (tree_expression *expr, token *dot_tok, token *struct_elt_tok);

  // Make an indirect reference expression with dynamic field name.
  OCTINTERP_API tree_index_expression *
  make_indirect_ref (tree_expression *expr, token *dot_tok, token *open_paren, tree_expression *field, token *close_paren);

  // Make a declaration command.
  OCTINTERP_API tree_decl_command *
  make_decl_command (token *tok, tree_decl_init_list *lst);

  OCTINTERP_API tree_decl_init_list *
  make_decl_init_list (tree_decl_elt *elt);

  OCTINTERP_API tree_decl_elt *
  make_decl_elt (tree_identifier *id, token *eq_op = nullptr, tree_expression *expr = nullptr);

  OCTINTERP_API tree_decl_init_list *
  append_decl_init_list (tree_decl_init_list *list, tree_decl_elt *elt);

  // Validate an function parameter list.
  OCTINTERP_API bool
  validate_param_list (tree_parameter_list *lst, tree_parameter_list::in_or_out type);
  // Validate matrix or cell
  OCTINTERP_API bool validate_array_list (tree_expression *e);

  // Validate matrix object used in "[lhs] = ..." assignments.
  OCTINTERP_API tree_argument_list *
  validate_matrix_for_assignment (tree_expression *e);

  // Finish building an array_list (common action for finish_matrix
  // and finish_cell).
  OCTINTERP_API tree_expression *
  finish_array_list (token *open_delim, tree_array_list *a, token *close_delim);

  // Finish building a matrix list.
  OCTINTERP_API tree_expression *
  finish_matrix (token *open_delim, tree_matrix *m, token *close_delim);

  // Finish building a cell list.
  OCTINTERP_API tree_expression *
  finish_cell (token *open_delim, tree_cell *c, token *close_delim);

  OCTINTERP_API tree_identifier *
  make_identifier (token *ident);

  OCTINTERP_API tree_superclass_ref *
  make_superclass_ref (token *superclassref);

  OCTINTERP_API tree_metaclass_query *
  make_metaclass_query (token *metaquery);

  // Set the print flag for a statement based on the separator type.
  OCTINTERP_API tree_statement_list *
  set_stmt_print_flag (tree_statement_list *list, int sep_char, bool warn_missing_semi);

  // Set the print flag for a statement based on the separator type.
  OCTINTERP_API tree_statement_list *
  set_stmt_print_flag (tree_statement_list *list, const token& sep_tok, bool warn_missing_semi);

  // Set the print flag for a statement based on the separator type.
  OCTINTERP_API tree_statement_list *
  set_stmt_print_flag (tree_statement_list *list, separator_list *sep_list, bool warn_missing_semi);

  // Finish building a statement.
  template <typename T>
  OCTINTERP_API tree_statement * make_statement (T *arg);

  // Create a statement list.
  OCTINTERP_API tree_statement_list *
  make_statement_list (tree_statement *stmt);

  // Append a statement to an existing statement list.
  OCTINTERP_API tree_statement_list *
  append_statement_list (tree_statement_list *list, int sep_char, tree_statement *stmt, bool warn_missing_semi);

  // Append a statement to an existing statement list.
  OCTINTERP_API tree_statement_list *
  append_statement_list (tree_statement_list *list, token *sep_tok, tree_statement *stmt, bool warn_missing_semi);

  // Append a statement to an existing statement list.
  OCTINTERP_API tree_statement_list *
  append_statement_list (tree_statement_list *list, separator_list *sep_list, tree_statement *stmt, bool warn_missing_semi);

  // Create a statement list containing only function_def commands.
  OCTINTERP_API tree_statement_list *
  make_function_def_list (tree_function_def *fcn_def);

  // Append a function_def command to an existing statement list (that
  // should contain only other function_def commands).
  OCTINTERP_API tree_statement_list *
  append_function_def_list (tree_statement_list *list, separator_list *sep_list, tree_function_def *fcn_def);

  OCTINTERP_API tree_argument_list *
  make_argument_list (tree_expression *expr);

  OCTINTERP_API tree_argument_list *
  append_argument_list (tree_argument_list *list, tree_expression *expr);

  OCTINTERP_API tree_argument_list *
  append_argument_list (tree_argument_list *list, token *sep_tok, tree_expression *expr);

  OCTINTERP_API tree_parameter_list *
  make_parameter_list (tree_parameter_list::in_or_out io);

  OCTINTERP_API tree_parameter_list *
  make_parameter_list (tree_parameter_list::in_or_out io, tree_decl_elt *t);

  OCTINTERP_API tree_parameter_list *
  make_parameter_list (tree_parameter_list::in_or_out io, tree_identifier *id);

  OCTINTERP_API tree_parameter_list *
  append_parameter_list (tree_parameter_list *list, token *sep_tok, tree_decl_elt *t);

  OCTINTERP_API tree_parameter_list *
  append_parameter_list (tree_parameter_list *list, token *sep_tok, tree_identifier *id);

  // Don't allow parsing command syntax.  If the parser/lexer is
  // reset, this setting is also reset to the default (allow command
  // syntax).
  OCTINTERP_API void disallow_command_syntax ();

  // Generic error messages.
  OCTINTERP_API void bison_error (const std::string& s);
  OCTINTERP_API void bison_error (const std::string& s, const filepos& pos);
  OCTINTERP_API void bison_error (const std::list<parse_exception>& pe);
  OCTINTERP_API void bison_error (const parse_exception& pe);

  friend OCTINTERP_API octave_value
  parse_fcn_file (interpreter& interp, const std::string& full_file, const std::string& file, const std::string& dir_name, const std::string& dispatch_type, const std::string& package_name, bool require_file, bool force_script, bool autoload, bool relative_lookup);

  // Thih interface allows push or pull parsers to be used
  // equivalently, provided that the push parser also owns its input
  // method (see below).  Alternatively, the push parser interface may
  // use a separate run method and completely separate input from
  // lexical analysis and parsing.

  virtual int run () = 0;

  // Check primary script or function generated by the parser for
  // semantic errors.
  OCTINTERP_API bool validate_primary_fcn ();

  OCTINTERP_API bool finish_input (tree_statement_list *lst, bool at_eof = false);

protected:

  // Contains error message if Bison-generated parser returns nonzero
  // status.
  std::string m_parse_error_msg;

  // Have we found an explicit end to a function?
  bool m_endfunction_found;

  // TRUE means we are in the process of autoloading a function.
  bool m_autoloading;

  // TRUE means the current function file was found in a relative path
  // element.
  bool m_fcn_file_from_relative_lookup;

  // FALSE if we are still at the primary function.  Subfunctions can
  // only be declared inside function files.
  bool m_parsing_subfunctions;

  // TRUE if we are parsing local functions defined at after a
  // classdef block.  Local functions can only be declared inside
  // classdef files.
  bool m_parsing_local_functions;

  // Maximum function depth detected.  Used to determine whether
  // we have nested functions or just implicitly ended subfunctions.
  int m_max_fcn_depth;

  // = 0 currently outside any function.
  // = 1 inside the primary function or a subfunction.
  // > 1 means we are looking at a function definition that seems to be
  //     inside a function.  Note that the function still might not be a
  //     nested function.
  int m_curr_fcn_depth;

  // Scope where we install all subfunctions and nested functions.  Only
  // used while reading function files.
  symbol_scope m_primary_fcn_scope;

  // Name of the current class when we are parsing class methods or
  // constructors.
  std::string m_curr_class_name;

  // Name of the current package when we are parsing an element contained
  // in a package directory (+-directory).
  std::string m_curr_package_name;

  // Nested function scopes and names currently being parsed.
  parent_scope_info m_function_scopes;

  // Pointer to the primary user function or user script function.
  octave_value m_primary_fcn;

  // List of subfunction names, initially in the order they are
  // installed in the symbol table, then ordered as they appear in the
  // file.  Eventually stashed in the primary function object.
  std::list<std::string> m_subfunction_names;

  // Pointer to the classdef object we just parsed, if any.
  std::shared_ptr<tree_classdef> m_classdef_object;

  // Result of parsing input.
  std::shared_ptr <tree_statement_list> m_stmt_list;

  // State of the lexer.
  base_lexer& m_lexer;

  // Internal state of the Bison parser.
  void *m_parser_state;

private:

  // Maybe print a warning if an assignment expression is used as the
  // test in a logical expression.
  OCTINTERP_API void maybe_warn_assign_as_truth_value (tree_expression *expr);

  // Maybe print a warning about switch labels that aren't constants.
  OCTINTERP_API void maybe_warn_variable_switch_label (tree_expression *expr);

  // Maybe print a warning.
  OCTINTERP_API void maybe_warn_missing_semi (tree_statement_list *);
};

// Publish externally used friend functions.

extern OCTINTERP_API octave_value
parse_fcn_file (interpreter& interp, const std::string& full_file, const std::string& file, const std::string& dir_name, const std::string& dispatch_type, const std::string& package_name, bool require_file, bool force_script, bool autoload, bool relative_lookup);

class parser : public base_parser
{
public:

  parser (interpreter& interp)
    : base_parser (*(new lexer (interp)))
  { }

  parser (FILE *file, interpreter& interp)
    : base_parser (*(new lexer (file, interp)))
  { }

  parser (FILE *file, interpreter& interp, std::string encoding)
    : base_parser (*(new lexer (file, interp, encoding)))
  { }

  parser (const std::string& eval_string, interpreter& interp)
    : base_parser (*(new lexer (eval_string, interp)))
  { }

  // The lexer must be allocated with new.  The parser object
  // takes ownership of and deletes the lexer object in its
  // destructor.

  parser (lexer *lxr)
    : base_parser (*lxr)
  { }

  OCTAVE_DISABLE_CONSTRUCT_COPY_MOVE (parser)

  ~parser () = default;

  OCTINTERP_API int run ();
};

class push_parser : public base_parser
{
public:

  push_parser (interpreter& interp)
    : base_parser (*(new push_lexer (interp))), m_interpreter (interp), m_reader ()
  { }

  // The parser assumes ownership of READER, which must be created
  // with new.

  push_parser (interpreter& interp, input_reader *reader)
    : base_parser (*(new push_lexer (interp))), m_interpreter (interp), m_reader (reader)
  { }

  OCTAVE_DISABLE_CONSTRUCT_COPY_MOVE (push_parser)

  ~push_parser () = default;

  // Use the push parser in the same way as the pull parser.  The
  // parser arranges for input through the M_READER object.  See, for
  // example, interpreter::main_loop.

  OCTINTERP_API int run ();

  // Parse INPUT.  M_READER is not used.  The user is responsible for
  // collecting input.

  OCTINTERP_API int run (const std::string& input, bool eof);

private:

  interpreter& m_interpreter;

  std::shared_ptr<input_reader> m_reader;
};

extern OCTINTERP_API std::string
get_help_from_file (const std::string& nm, bool& symbol_found, std::string& file);

extern OCTINTERP_API std::string
get_help_from_file (const std::string& nm, bool& symbol_found);

extern OCTINTERP_API octave_value
load_fcn_from_file (const std::string& file_name, const std::string& dir_name = "", const std::string& dispatch_type = "", const std::string& package_name = "", const std::string& fcn_name = "", bool autoload = false);

extern OCTINTERP_API void
source_file (const std::string& file_name, const std::string& context = "", bool verbose = false, bool require_file = true);

extern OCTINTERP_API octave_value_list
feval (const char *name, const octave_value_list& args = octave_value_list (), int nargout = 0);

extern OCTINTERP_API octave_value_list
feval (const std::string& name, const octave_value_list& args = octave_value_list (), int nargout = 0);

extern OCTINTERP_API octave_value_list
feval (octave_function *fcn, const octave_value_list& args = octave_value_list (), int nargout = 0);

extern OCTINTERP_API octave_value_list
feval (const octave_value& val, const octave_value_list& args = octave_value_list (), int nargout = 0);

extern OCTINTERP_API octave_value_list
feval (const octave_value_list& args, int nargout = 0);

OCTAVE_END_NAMESPACE(octave)

#endif