comparison src/pt-bp.cc @ 5102:b04b30d30c66

[project @ 2004-12-28 01:59:05 by jwe]
author jwe
date Tue, 28 Dec 2004 01:59:05 +0000
parents 12b6fbd57436
children e35b034d3523
comparison
equal deleted inserted replaced
5101:9b1af8135ecd 5102:b04b30d30c66
467 if (elt) 467 if (elt)
468 elt->accept (*this); 468 elt->accept (*this);
469 } 469 }
470 } 470 }
471 471
472 void
473 tree_breakpoint::visit_plot_command (tree_plot_command& cmd)
474 {
475 if (found)
476 return;
477
478 // Don't bother looking at the range plot list since they must be
479 // on the same line.
480
481 if (cmd.line () >= line)
482 take_action (cmd);
483 }
484
485 void
486 tree_breakpoint::visit_plot_limits (plot_limits&)
487 {
488 // Do nothing. This case will be handled in visit_tree_plot_command.
489 }
490
491 void
492 tree_breakpoint::visit_plot_range (plot_range&)
493 {
494 // Do nothing. This case will be handled in visit_tree_plot_command.
495 }
496
497 void 472 void
498 tree_breakpoint::visit_postfix_expression (tree_postfix_expression& expr) 473 tree_breakpoint::visit_postfix_expression (tree_postfix_expression& expr)
499 { 474 {
500 if (found) 475 if (found)
501 return; 476 return;
592 tree_statement *elt = *p; 567 tree_statement *elt = *p;
593 568
594 if (elt) 569 if (elt)
595 elt->accept (*this); 570 elt->accept (*this);
596 } 571 }
597 }
598
599 void
600 tree_breakpoint::visit_subplot (subplot&)
601 {
602 // Do nothing. This case will be handled in visit_tree_plot_command.
603 }
604
605 void
606 tree_breakpoint::visit_subplot_axes (subplot_axes&)
607 {
608 // Do nothing. This caser will be handled in visit_tree_plot_command.
609 }
610
611 void
612 tree_breakpoint::visit_subplot_list (subplot_list&)
613 {
614 // Do nothing. This case will be handled in visit_tree_plot_command.
615 }
616
617 void
618 tree_breakpoint::visit_subplot_style (subplot_style&)
619 {
620 // Do nothing. This case will be handled in visit_tree_plot_command.
621 }
622
623 void
624 tree_breakpoint::visit_subplot_using (subplot_using&)
625 {
626 // Do nothing. This case will be handled in visit_tree_plot_command.
627 } 572 }
628 573
629 void 574 void
630 tree_breakpoint::visit_switch_case (tree_switch_case& cmd) 575 tree_breakpoint::visit_switch_case (tree_switch_case& cmd)
631 { 576 {