Mercurial > hg > octave-nkf
comparison libinterp/parse-tree/lex.h @ 16185:e810e7d941a1
* lex.h (octave_lexer::octave_lexer): Explicity initialize token_stack.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sun, 03 Mar 2013 15:46:53 -0500 |
parents | 359d56094efa |
children | d7392bf42fd1 |
comparison
equal
deleted
inserted
replaced
16184:05313332d541 | 16185:e810e7d941a1 |
---|---|
195 input_line_number (1), current_input_column (1), | 195 input_line_number (1), current_input_column (1), |
196 bracketflag (0), braceflag (0), | 196 bracketflag (0), braceflag (0), |
197 looping (0), defining_func (0), looking_at_function_handle (0), | 197 looping (0), defining_func (0), looking_at_function_handle (0), |
198 block_comment_nesting_level (0), | 198 block_comment_nesting_level (0), |
199 looking_at_object_index (), parsed_function_name (), | 199 looking_at_object_index (), parsed_function_name (), |
200 pending_local_variables (), nesting_level (), input_buf () | 200 pending_local_variables (), nesting_level (), input_buf (), |
201 token_stack () | |
201 { | 202 { |
202 init (); | 203 init (); |
203 } | 204 } |
204 | 205 |
205 ~octave_lexer (void); | 206 ~octave_lexer (void); |