comparison libinterp/parse-tree/oct-parse.in.yy @ 16595:8abae9ea4cb5 classdef

maint: periodic merge of default to classdef
author John W. Eaton <jwe@octave.org>
date Mon, 29 Apr 2013 19:13:40 -0400
parents 2ed5bc680c71 b678d2d10e53
children 856cb7cba231
comparison
equal deleted inserted replaced
16553:2ed5bc680c71 16595:8abae9ea4cb5
1573 } 1573 }
1574 1574
1575 void 1575 void
1576 octave_base_parser::reset (void) 1576 octave_base_parser::reset (void)
1577 { 1577 {
1578 endfunction_found = false;
1579 autoloading = false;
1580 fcn_file_from_relative_lookup = false;
1581 parsing_subfunctions = false;
1582 max_fcn_depth = 0;
1583 curr_fcn_depth = 0;
1584 primary_fcn_scope = -1;
1585 curr_class_name = "";
1586 function_scopes.clear ();
1587 primary_fcn_ptr = 0;
1588
1578 delete stmt_list; 1589 delete stmt_list;
1579
1580 stmt_list = 0; 1590 stmt_list = 0;
1581 1591
1582 lexer.reset (); 1592 lexer.reset ();
1583 } 1593 }
1584 1594