comparison src/pt-bp.cc @ 4661:12b6fbd57436

[project @ 2003-11-25 05:41:35 by jwe]
author jwe
date Tue, 25 Nov 2003 05:41:36 +0000
parents 813effe14ee1
children b04b30d30c66
comparison
equal deleted inserted replaced
4660:5df5c9c5c166 4661:12b6fbd57436
269 lst->accept (*this); 269 lst->accept (*this);
270 270
271 } 271 }
272 272
273 void 273 void
274 tree_breakpoint::visit_octave_user_function (octave_user_function& cmd) 274 tree_breakpoint::visit_octave_user_function (octave_user_function&)
275 { 275 {
276 // we should not visit octave user functions because the function we are currently 276 // We should not visit octave user functions because the function we
277 // in is the function where the breakpoint was requested 277 // are currently in is the function where the breakpoint was
278 } 278 // requested.
279 279 }
280 void 280
281 tree_breakpoint::visit_octave_user_function_header (octave_user_function& cmd) 281 void
282 { 282 tree_breakpoint::visit_octave_user_function_header (octave_user_function&)
283 // Do nothing 283 {
284 } 284 // Do nothing.
285 285 }
286 void 286
287 tree_breakpoint::visit_octave_user_function_trailer (octave_user_function& cmd) 287 void
288 { 288 tree_breakpoint::visit_octave_user_function_trailer (octave_user_function&)
289 // Do nothing 289 {
290 // Do nothing.
290 } 291 }
291 292
292 void 293 void
293 tree_breakpoint::visit_identifier (tree_identifier& id) 294 tree_breakpoint::visit_identifier (tree_identifier& id)
294 { 295 {
480 if (cmd.line () >= line) 481 if (cmd.line () >= line)
481 take_action (cmd); 482 take_action (cmd);
482 } 483 }
483 484
484 void 485 void
485 tree_breakpoint::visit_plot_limits (plot_limits& cmd) 486 tree_breakpoint::visit_plot_limits (plot_limits&)
486 { 487 {
487 // Do nothing. This case will be handled in visit_tree_plot_command. 488 // Do nothing. This case will be handled in visit_tree_plot_command.
488 } 489 }
489 490
490 void 491 void
491 tree_breakpoint::visit_plot_range (plot_range& cmd) 492 tree_breakpoint::visit_plot_range (plot_range&)
492 { 493 {
493 // Do nothing. This case will be handled in visit_tree_plot_command. 494 // Do nothing. This case will be handled in visit_tree_plot_command.
494 } 495 }
495 496
496 void 497 void
594 elt->accept (*this); 595 elt->accept (*this);
595 } 596 }
596 } 597 }
597 598
598 void 599 void
599 tree_breakpoint::visit_subplot (subplot& cmd) 600 tree_breakpoint::visit_subplot (subplot&)
600 { 601 {
601 // Do nothing. This case will be handled in visit_tree_plot_command. 602 // Do nothing. This case will be handled in visit_tree_plot_command.
602 } 603 }
603 604
604 void 605 void
605 tree_breakpoint::visit_subplot_axes (subplot_axes& cmd) 606 tree_breakpoint::visit_subplot_axes (subplot_axes&)
606 { 607 {
607 // Do nothing. This caser will be handled in visit_tree_plot_command. 608 // Do nothing. This caser will be handled in visit_tree_plot_command.
608 } 609 }
609 610
610 void 611 void
611 tree_breakpoint::visit_subplot_list (subplot_list& cmd) 612 tree_breakpoint::visit_subplot_list (subplot_list&)
612 { 613 {
613 // Do nothing. This case will be handled in visit_tree_plot_command. 614 // Do nothing. This case will be handled in visit_tree_plot_command.
614 } 615 }
615 616
616 void 617 void
617 tree_breakpoint::visit_subplot_style (subplot_style& cmd) 618 tree_breakpoint::visit_subplot_style (subplot_style&)
618 { 619 {
619 // Do nothing. This case will be handled in visit_tree_plot_command. 620 // Do nothing. This case will be handled in visit_tree_plot_command.
620 } 621 }
621 622
622 void 623 void
623 tree_breakpoint::visit_subplot_using (subplot_using& cmd) 624 tree_breakpoint::visit_subplot_using (subplot_using&)
624 { 625 {
625 // Do nothing. This case will be handled in visit_tree_plot_command. 626 // Do nothing. This case will be handled in visit_tree_plot_command.
626 } 627 }
627 628
628 void 629 void