1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942
|
////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1993-2021 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING. If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////
#if defined (HAVE_CONFIG_H)
# include "config.h"
#endif
#include <iostream>
#include <sstream>
#include "oct-time.h"
#include "bp-table.h"
#include "defun.h"
#include "fcn-info.h"
#include "interpreter-private.h"
#include "interpreter.h"
#include "load-path.h"
#include "ov-classdef.h"
#include "ov-fcn.h"
#include "ov-usr-fcn.h"
#include "pager.h"
#include "parse.h"
#include "pt-pr-code.h"
#include "symscope.h"
#include "symtab.h"
namespace octave
{
symbol_table::symbol_table (interpreter& interp)
: m_interpreter (interp), m_fcn_table (), m_class_precedence_table (),
m_parent_map ()
{
install_builtins ();
}
symbol_scope symbol_table::current_scope (void) const
{
tree_evaluator& tw = m_interpreter.get_evaluator ();
return tw.get_current_scope ();
}
bool symbol_table::is_built_in_function_name (const std::string& name)
{
octave_value val = find_built_in_function (name);
return val.is_defined ();
}
octave_value
symbol_table::find_scoped_function (const std::string& name,
const symbol_scope& search_scope)
{
if (name.empty ())
return octave_value ();
fcn_table_const_iterator p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
return p->second.find_scoped_function (search_scope);
else
{
fcn_info finfo (name);
octave_value fcn = finfo.find_scoped_function (search_scope);
if (fcn.is_defined ())
m_fcn_table[name] = finfo;
return fcn;
}
}
octave_value
symbol_table::find_private_function (const std::string& dir_name,
const std::string& name)
{
if (name.empty ())
return octave_value ();
fcn_table_const_iterator p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
return p->second.find_private_function (dir_name);
else
{
fcn_info finfo (name);
octave_value fcn = finfo.find_private_function (dir_name);
if (fcn.is_defined ())
m_fcn_table[name] = finfo;
return fcn;
}
}
// FIXME: this function only finds legacy class methods, not
// classdef methods.
octave_value symbol_table::find_method (const std::string& name,
const std::string& dispatch_type)
{
if (name.empty ())
return octave_value ();
fcn_table_const_iterator p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
return p->second.find_method (dispatch_type);
else
{
fcn_info finfo (name);
octave_value fcn = finfo.find_method (dispatch_type);
if (fcn.is_defined ())
m_fcn_table[name] = finfo;
return fcn;
}
}
octave_value symbol_table::find_built_in_function (const std::string& name)
{
fcn_table_const_iterator p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
return p->second.find_built_in_function ();
else
{
fcn_info finfo (name);
octave_value fcn = finfo.find_built_in_function ();
if (fcn.is_defined ())
m_fcn_table[name] = finfo;
return fcn;
}
}
octave_value symbol_table::find_autoload (const std::string& name)
{
if (name.empty ())
return octave_value ();
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
return p->second.find_autoload ();
else
{
fcn_info finfo (name);
octave_value fcn = finfo.find_autoload ();
if (fcn.is_defined ())
m_fcn_table[name] = finfo;
return fcn;
}
}
octave_value
symbol_table::builtin_find (const std::string& name,
const symbol_scope& search_scope_arg)
{
if (name.empty ())
return octave_value ();
fcn_table_iterator p = m_fcn_table.find (name);
symbol_scope search_scope
= (search_scope_arg ? search_scope_arg : current_scope ());
if (p != m_fcn_table.end ())
return p->second.builtin_find (search_scope);
else
{
fcn_info finfo (name);
octave_value fcn = finfo.builtin_find (search_scope);
if (fcn.is_defined ())
m_fcn_table[name] = finfo;
return fcn;
}
return octave_value ();
}
octave_value
symbol_table::fcn_table_find (const std::string& name,
const octave_value_list& args,
const symbol_scope& search_scope_arg)
{
if (name.empty ())
return octave_value ();
fcn_table_iterator p = m_fcn_table.find (name);
symbol_scope search_scope
= (search_scope_arg ? search_scope_arg : current_scope ());
if (p != m_fcn_table.end ())
return p->second.find (search_scope, args);
else
{
fcn_info finfo (name);
octave_value fcn = finfo.find (search_scope, args);
if (fcn.is_defined ())
m_fcn_table[name] = finfo;
return fcn;
}
return octave_value ();
}
octave_value
symbol_table::find_function (const std::string& name,
const symbol_scope& search_scope_arg)
{
if (name.empty ())
return octave_value ();
if (name[0] == '@')
{
size_t pos = name.find_first_of ('/');
if (pos == std::string::npos)
return octave_value ();
std::string method = name.substr (pos+1);
std::string dispatch_type = name.substr (1, pos-1);
return find_method (method, dispatch_type);
}
else
{
symbol_scope search_scope
= (search_scope_arg ? search_scope_arg : current_scope ());
return find_function (name, ovl (), search_scope);
}
}
octave_value
symbol_table::find_function (const std::string& name,
const octave_value_list& args,
const symbol_scope& search_scope)
{
if (name.empty ())
return octave_value ();
return fcn_table_find (name, args, search_scope);
}
octave_value
symbol_table::find_user_function (const std::string& name)
{
if (name.empty ())
return octave_value ();
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
return p->second.find_user_function ();
else
{
fcn_info finfo (name);
octave_value fcn = finfo.find_user_function ();
if (fcn.is_defined ())
m_fcn_table[name] = finfo;
return fcn;
}
}
octave_value symbol_table::find_cmdline_function (const std::string& name)
{
if (name.empty ())
return octave_value ();
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
return p->second.find_cmdline_function ();
else
{
fcn_info finfo (name);
octave_value fcn = finfo.find_cmdline_function ();
if (fcn.is_defined ())
m_fcn_table[name] = finfo;
return fcn;
}
}
void symbol_table::install_cmdline_function (const std::string& name,
const octave_value& fcn)
{
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
{
fcn_info& finfo = p->second;
finfo.install_cmdline_function (fcn);
}
else
{
fcn_info finfo (name);
finfo.install_cmdline_function (fcn);
m_fcn_table[name] = finfo;
}
}
// Install local function FCN named NAME. FILE_NAME is the name of
// the file containing the local function.
void symbol_table::install_local_function (const std::string& name,
const octave_value& fcn,
const std::string& file_name)
{
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
{
fcn_info& finfo = p->second;
finfo.install_local_function (fcn, file_name);
}
else
{
fcn_info finfo (name);
finfo.install_local_function (fcn, file_name);
m_fcn_table[name] = finfo;
}
}
void symbol_table::install_user_function (const std::string& name,
const octave_value& fcn)
{
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
{
fcn_info& finfo = p->second;
finfo.install_user_function (fcn);
}
else
{
fcn_info finfo (name);
finfo.install_user_function (fcn);
m_fcn_table[name] = finfo;
}
}
// FIXME: should we ensure that FCN really is a built-in function
// object?
void symbol_table::install_built_in_function (const std::string& name,
const octave_value& fcn)
{
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
{
fcn_info& finfo = p->second;
finfo.install_built_in_function (fcn);
}
else
{
fcn_info finfo (name);
finfo.install_built_in_function (fcn);
m_fcn_table[name] = finfo;
}
}
// This is written as two separate functions instead of a single
// function with default values so that it will work properly with
// unwind_protect.
void symbol_table::clear_functions (bool force)
{
auto p = m_fcn_table.begin ();
while (p != m_fcn_table.end ())
(p++)->second.clear (force);
}
void symbol_table::clear_function (const std::string& name)
{
clear_user_function (name);
}
void symbol_table::clear_function_pattern (const std::string& pat)
{
glob_match pattern (pat);
auto p = m_fcn_table.begin ();
while (p != m_fcn_table.end ())
{
if (pattern.match (p->first))
(p++)->second.clear_user_function ();
else
p++;
}
}
void symbol_table::clear_function_regexp (const std::string& pat)
{
regexp pattern (pat);
auto p = m_fcn_table.begin ();
while (p != m_fcn_table.end ())
{
if (pattern.is_match (p->first))
(p++)->second.clear_user_function ();
else
p++;
}
}
void symbol_table::clear_user_function (const std::string& name)
{
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
{
fcn_info& finfo = p->second;
finfo.clear_user_function ();
}
// FIXME: is this necessary, or even useful?
// else
// error ("clear: no such function '%s'", name.c_str ());
}
// This clears oct and mex files, including autoloads.
void symbol_table::clear_dld_function (const std::string& name)
{
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
{
fcn_info& finfo = p->second;
finfo.clear_autoload_function ();
finfo.clear_user_function ();
}
}
void symbol_table::clear_mex_functions (void)
{
auto p = m_fcn_table.begin ();
while (p != m_fcn_table.end ())
(p++)->second.clear_mex_function ();
}
// Insert INF_CLASS in the set of class names that are considered
// inferior to SUP_CLASS. Return FALSE if INF_CLASS is currently
// marked as superior to SUP_CLASS.
bool symbol_table::set_class_relationship (const std::string& sup_class,
const std::string& inf_class)
{
if (is_superiorto (inf_class, sup_class))
return false;
// If sup_class doesn't have an entry in the precedence table,
// this will automatically create it, and associate to it a
// singleton set {inf_class} of inferior classes.
m_class_precedence_table[sup_class].insert (inf_class);
return true;
}
// Has class A been marked as superior to class B? Also returns
// TRUE if B has been marked as inferior to A, since we only keep
// one table, and convert inferiorto information to a superiorto
// relationship. Two calls are required to determine whether there
// is no relationship between two classes:
//
// if (symbol_table::is_superiorto (a, b))
// // A is superior to B, or B has been marked inferior to A.
// else if (symbol_table::is_superiorto (b, a))
// // B is superior to A, or A has been marked inferior to B.
// else
// // No relation.
bool symbol_table::is_superiorto (const std::string& a, const std::string& b)
{
class_precedence_table_const_iterator p = m_class_precedence_table.find (a);
// If a has no entry in the precedence table, return false
if (p == m_class_precedence_table.end ())
return false;
const std::set<std::string>& inferior_classes = p->second;
std::set<std::string>::const_iterator q = inferior_classes.find (b);
return (q != inferior_classes.end ());
}
void symbol_table::alias_built_in_function (const std::string& alias,
const std::string& name)
{
octave_value fcn = find_built_in_function (name);
if (fcn.is_defined ())
{
fcn_info finfo (alias);
finfo.install_built_in_function (fcn);
m_fcn_table[alias] = finfo;
}
else
panic ("alias: '%s' is undefined", name.c_str ());
}
void symbol_table::install_built_in_dispatch (const std::string& name,
const std::string& klass)
{
auto p = m_fcn_table.find (name);
if (p != m_fcn_table.end ())
{
fcn_info& finfo = p->second;
finfo.install_built_in_dispatch (klass);
}
else
error ("install_built_in_dispatch: '%s' is undefined", name.c_str ());
}
std::list<std::string> symbol_table::user_function_names (void)
{
std::list<std::string> retval;
for (const auto& nm_finfo : m_fcn_table)
{
if (nm_finfo.second.is_user_function_defined ())
retval.push_back (nm_finfo.first);
}
if (! retval.empty ())
retval.sort ();
return retval;
}
std::list<std::string> symbol_table::built_in_function_names (void)
{
std::list<std::string> retval;
for (const auto& nm_finfo : m_fcn_table)
{
octave_value fcn = nm_finfo.second.find_built_in_function ();
if (fcn.is_defined ())
retval.push_back (nm_finfo.first);
}
if (! retval.empty ())
retval.sort ();
return retval;
}
std::list<std::string> symbol_table::cmdline_function_names (void)
{
std::list<std::string> retval;
for (const auto& nm_finfo : m_fcn_table)
{
octave_value fcn = nm_finfo.second.find_cmdline_function ();
if (fcn.is_defined ())
retval.push_back (nm_finfo.first);
}
if (! retval.empty ())
retval.sort ();
return retval;
}
template <template <typename, typename...> class C, typename V,
typename... A>
static octave_value
dump_container_map (const std::map<std::string, C<V, A...>>& container_map)
{
if (container_map.empty ())
return octave_value (Matrix ());
std::map<std::string, octave_value> info_map;
for (const auto& nm_container : container_map)
{
std::string nm = nm_container.first;
const C<V, A...>& container = nm_container.second;
info_map[nm] = Cell (container);
}
return octave_value (info_map);
}
octave_value symbol_table::dump (void) const
{
std::map<std::string, octave_value> m
= {{ "function_info", dump_fcn_table_map () },
{ "precedence_table", dump_container_map (m_class_precedence_table) },
{ "parent_classes", dump_container_map (m_parent_map) }};
return octave_value (m);
}
void symbol_table::add_to_parent_map (const std::string& classname,
const std::list<std::string>& parent_list)
{
m_parent_map[classname] = parent_list;
}
std::list<std::string> symbol_table::parent_classes (const std::string& dispatch_type)
{
std::list<std::string> retval;
const_parent_map_iterator it = m_parent_map.find (dispatch_type);
if (it != m_parent_map.end ())
retval = it->second;
for (const auto& nm : retval)
{
// Search for parents of parents and append them to the list.
// FIXME: should we worry about a circular inheritance graph?
std::list<std::string> parents = parent_classes (nm);
if (! parents.empty ())
retval.insert (retval.end (), parents.begin (), parents.end ());
}
return retval;
}
void symbol_table::cleanup (void)
{
clear_functions ();
m_fcn_table.clear ();
m_class_precedence_table.clear ();
m_parent_map.clear ();
}
fcn_info * symbol_table::get_fcn_info (const std::string& name)
{
auto p = m_fcn_table.find (name);
return p != m_fcn_table.end () ? &p->second : nullptr;
}
octave_value symbol_table::dump_fcn_table_map (void) const
{
if (m_fcn_table.empty ())
return octave_value (Matrix ());
std::map<std::string, octave_value> info_map;
for (const auto& nm_finfo : m_fcn_table)
{
std::string nm = nm_finfo.first;
const fcn_info& finfo = nm_finfo.second;
info_map[nm] = finfo.dump ();
}
return octave_value (info_map);
}
// DEPRECATED
bool symbol_table::at_top_level (void)
{
return m_interpreter.at_top_level ();
}
// DEPRECATED
octave_value symbol_table::varval (const std::string& name) const
{
return m_interpreter.varval (name);
}
// DEPRECATED
octave_value symbol_table::global_varval (const std::string& name) const
{
return m_interpreter.global_varval (name);
}
// DEPRECATED
octave_value symbol_table::top_level_varval (const std::string& name) const
{
return m_interpreter.top_level_varval (name);
}
// DEPRECATED
std::list<std::string> symbol_table::global_variable_names (void)
{
return m_interpreter.global_variable_names ();
}
// DEPRECATED
std::list<std::string> symbol_table::top_level_variable_names (void)
{
return m_interpreter.top_level_variable_names ();
}
// DEPRECATED
std::list<std::string> symbol_table::variable_names (void)
{
return m_interpreter.variable_names ();
}
// DEPRECATED
void symbol_table::assign (const std::string& name, const octave_value& value)
{
return m_interpreter.assign (name, value);
}
// DEPRECATED
void symbol_table::clear_all (bool force)
{
return m_interpreter.clear_all (force);
}
// DEPRECATED
void symbol_table::clear_global (const std::string& name)
{
return m_interpreter.clear_global_variable (name);
}
// DEPRECATED
void symbol_table::clear_global_pattern (const std::string& pattern)
{
return m_interpreter.clear_global_variable_pattern (pattern);
}
// DEPRECATED
void symbol_table::clear_symbol (const std::string& name)
{
return m_interpreter.clear_symbol (name);
}
// DEPRECATED
void symbol_table::clear_symbol_pattern (const std::string& pattern)
{
return m_interpreter.clear_symbol_pattern (pattern);
}
// DEPRECATED
void symbol_table::global_assign (const std::string& name,
const octave_value& value)
{
return m_interpreter.global_assign (name, value);
}
// DEPRECATED
void symbol_table::top_level_assign (const std::string& name,
const octave_value& value)
{
return m_interpreter.top_level_assign (name, value);
}
}
DEFMETHOD (__dump_symtab_info__, interp, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {} __dump_symtab_info__ ()
@deftypefnx {} {} __dump_symtab_info__ (@var{function})
Undocumented internal function.
@end deftypefn */)
{
int nargin = args.length ();
if (nargin > 1)
print_usage ();
octave::symbol_table& symtab = interp.get_symbol_table ();
if (nargin == 0)
return symtab.dump ();
else
{
std::string fname = args(0).xstring_value ("__dump_symtab_info__: argument must be a function name");
octave::fcn_info *finfo = symtab.get_fcn_info (fname);
if (finfo)
return finfo->dump ();
}
return ovl ();
}
DEFMETHOD (__get_cmdline_fcn_txt__, interp, args, ,
doc: /* -*- texinfo -*-
@deftypefn {} {} __get_cmdline_fcn_txt__ (@var{name})
Undocumented internal function.
@end deftypefn */)
{
if (args.length () != 1)
print_usage ();
std::string name = args(0).xstring_value ("__get_cmdline_fcn_txt__: first argument must be function name");
octave::symbol_table& symtab = interp.get_symbol_table ();
octave_value ov = symtab.find_cmdline_function (name);
octave_user_function *f = ov.user_function_value ();
octave_value_list retval;
if (f)
{
std::ostringstream buf;
octave::tree_print_code tpc (buf);
f->accept (tpc);
retval = ovl (buf.str ());
}
return retval;
}
// FIXME: should we have functions like this in Octave?
//
// DEFMETHOD (set_variable, interp, args, , "set_variable (NAME, VALUE)")
// {
// if (args.length () != 2)
// print_usage ();
//
// std::string name = args(0).xstring_value ("set_variable: variable NAME must be a string");
//
// octave::symbol_table& symtab = interp.get_symbol_table ();
//
// symtab.assign (name, args(1));
//
// return ovl ();
// }
//
// DEFMETHOD (variable_value, interp, args, , "VALUE = variable_value (NAME)")
// {
// if (args.length () != 1)
// print_usage ();
//
// octave_value retval;
//
// std::string name = args(0).xstring_value ("variable_value: variable NAME must be a string");
//
// octave::symbol_table& symtab = interp.get_symbol_table ();
//
// retval = symtab.varval (name);
//
// if (retval.is_undefined ())
// error ("variable_value: '%s' is not a variable in the current scope",
// name.c_str ());
//
// return retval;
// }
/*
bug #34497: 'clear -f' does not work for command line functions
This test relies on bar being a core function that is implemented in an m-file.
If the first assert fails, this is no longer the case and the tests need to be
updated to use some other function.
%!assert <34497> (! strcmp (which ("bar"), ""))
%!function x = bar ()
%! x = 5;
%!endfunction
%!test
%! assert (bar == 5);
%! assert (strcmp (which ("bar"), "command-line function"));
%! clear -f bar;
%! assert (! strcmp (which ("bar"), ""));
%!function x = bar ()
%! x = 5;
%!endfunction
%!test
%! assert (bar == 5);
%! assert (strcmp (which ("bar"), "command-line function"));
%! clear bar;
%! assert (! strcmp (which ("bar"), ""));
*/
|