Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for FindVariable (0.33 sec)

  1. src/runtime/runtime-lldb_test.go

                  print "Stopped at %s:%d" % (frame.line_entry.file.basename, frame.line_entry.line)
                if frame.function:
                  print "Stopped in %s" % (frame.function.name,)
                var = frame.FindVariable('intvar')
                if var:
                  print "intvar = %s" % (var.GetValue(),)
                else:
                  print "no intvar"
        else:
          print "Process state", state
        process.Destroy()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top