2

我正在研究 4gl 语言,但还是一个新人。在文件 custom.4gl 中调用了函数 cleanup(),但我没有找到函数定义。我试图找到那个。

我得到了一个名为“tags”的文件,其中包含以下代码行,其中有清理提示。但我不明白这是什么意思。谁能帮我找到函数定义。

我用我的代码编辑器搜索了文件夹,但没有办法。

cleanup custom.4gl  /^function cleanup(
cn_error_handler    cnerhand.4gl    /^function cn_error_handler(
default_code    custom.4gl  /^function default_code(
get_file    custom.4gl  /^function get_file(
get_params  custom.4gl  /^function get_params(
get_prompts custom.4gl  /^function get_prompts(
logo    main.4gl    /^function logo(
4

2 回答 2

1

我通常做什么:

在调试器中运行可执行文件并中断此函数,它会告诉您其定义的 .4gl 文件的名称。

中断清理

于 2013-05-30T21:41:45.937 回答
1

清理功能曾经在 custom.4gl 中。

如果它现在不存在,那么一定是有人删除了它。

您是否有某种可以从中获取的源代码控制系统?

于 2013-05-24T22:41:52.347 回答