Mercurial > hg > octave-nkf
view examples/funcdemo.cc @ 14293:71a198cca35b
improve parsing of classdef methods
* oct-parse.yy (fcn_name):
also set lexer_flags.parsed_function_name.top() to true when
recognizing classdef set.PROPERTY or get.PROPERTY methods.
(parse_fcn_file): Also set reading_script_file to true when reading
classdef files.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 30 Jan 2012 23:06:01 -0500 |
parents | 6cb30a539481 |
children | 460a3c6d8bf1 |
line wrap: on
line source
#include <octave/oct.h> #include <octave/parse.h> DEFUN_DLD (funcdemo, args, nargout, "Function Demo") { int nargin = args.length(); octave_value_list retval; if (nargin < 2) print_usage (); else { octave_value_list newargs; for (octave_idx_type i = nargin - 1; i > 0; i--) newargs (i - 1) = args(i); if (args(0).is_function_handle () || args(0).is_inline_function ()) { octave_function *fcn = args(0).function_value (); if (! error_state) retval = feval (fcn, newargs, nargout); } else if (args(0).is_string ()) { std::string fcn = args (0).string_value (); if (! error_state) retval = feval (fcn, newargs, nargout); } else error ("funcdemo: expected string,", " inline or function handle"); } return retval; }