octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #46451] unable to set breakpoints within class


From: John W. Eaton
Subject: [Octave-bug-tracker] [bug #46451] unable to set breakpoints within classdef classes
Date: Tue, 16 Jun 2020 16:57:55 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0

Follow-up Comment #17, bug #46451 (project octave):

The changes described in comment #14 were made on the default branch after
Octave 5.x.  So they will appear in version 6 and later.

Here is what I see with the current sources on the stable branch that should
soon be released as Octave 6.1:


octave:1> dbstop in test_class at bar
ans = 7
octave:2> x = test_class
x =

  test_class object with properties:

      foo: [1x1 double]

octave:3> x.bar ()
stopped in bar at line 7
[/net/devnull/scratch/jwe/build/octave-stable/test_class.m] 
7:   this.foo = 9999;
debug> this
this =

  test_class object with properties:

      foo: [1x1 double]

debug> this.foo
ans = 123.45
debug> dbstep
stopped in bar at line 8
[/net/devnull/scratch/jwe/build/octave-stable/test_class.m] 
8: end
debug> this.foo
ans = 9999
debug> dbcont
octave:4> 



    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?46451>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]