передача смешения при точечной подстановке процедур.v++

This commit is contained in:
2023-11-22 18:36:28 +03:00
parent 97a2429923
commit 14b13eae97
6 changed files with 16 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ public class SPF_InlineProcedure extends SapforFilesModification {
protected boolean canStart(Object... args) throws Exception {
if (super.canStart(args) && (call = (args.length > 0) ? (FuncCall) args[0] : null) != null) {
addOpt1 = call.funcName + "|" + Current.getFile().name;
addOpt2 = String.valueOf(call.line);
addOpt2 = String.valueOf(call.getInlineOffset());
Global.changeSetting(SettingName.PARSE_FOR_INLINE, "1");
// Pass_2021.passes.get(PassCode_2021.UpdateSetting).Do(SettingName.PARSE_FOR_INLINE, "1");
SPF_ParseFilesWithOrder.silent = true;