view test/fcn-handle/bug51709_c.m @ 30920:47cbc69e66cd

eliminate direct access to call stack from evaluator The call stack is an internal implementation detail of the evaluator. Direct access to it outside of the evlauator should not be needed. * pt-eval.h (tree_evaluator::get_call_stack): Delete.
author John W. Eaton <jwe@octave.org>
date Fri, 08 Apr 2022 15:19:22 -0400
parents b033cf021048
children
line wrap: on
line source

classdef bug51709_c
  methods
    function out = meth (varargin)
      out = {"meth", varargin};
    endfunction
  endmethods
  methods (Static)
    function out = smeth (varargin)
      out = {"smeth", varargin};
    endfunction
  endmethods
endclassdef