@abaplint/core 2.113.111 → 2.113.113

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -229,9 +229,9 @@ declare class ApplicationLogObject extends AbstractObject {
229
229
  }
230
230
 
231
231
  /** returns list of filenames which were changed */
232
- export declare function applyEditList(reg: IRegistry, edits: IEdit[]): string[];
232
+ declare function applyEditList(reg: IRegistry, edits: IEdit[]): string[];
233
233
 
234
- export declare function applyEditSingle(reg: IRegistry, edit: IEdit): void;
234
+ declare function applyEditSingle(reg: IRegistry, edit: IEdit): void;
235
235
 
236
236
  declare class ArithOperator extends Expression {
237
237
  getRunnable(): IStatementRunnable;
@@ -1938,6 +1938,11 @@ declare class EditorCall implements IStatement {
1938
1938
  getMatcher(): IStatementRunnable;
1939
1939
  }
1940
1940
 
1941
+ export declare const Edits: {
1942
+ applyEditSingle: typeof applyEditSingle;
1943
+ applyEditList: typeof applyEditList;
1944
+ };
1945
+
1941
1946
  declare class Else implements IStructure {
1942
1947
  getMatcher(): IStructureRunnable;
1943
1948
  }
@@ -5417,7 +5422,7 @@ declare class ReduceNext extends Expression {
5417
5422
  getRunnable(): IStatementRunnable;
5418
5423
  }
5419
5424
 
5420
- declare enum ReferenceType {
5425
+ export declare enum ReferenceType {
5421
5426
  /** for classes and interface references */
5422
5427
  ObjectOrientedReference = "Object",
5423
5428
  ObjectOrientedVoidReference = "Object (Void)",
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Rename = exports.PrettyPrinter = exports.Position = exports.CurrentScope = exports.ABAPFile = exports.RulesRunner = exports.SpaghettiScope = exports.SyntaxLogic = exports.ABAPObject = exports.Tokens = exports.ExpressionsCDS = exports.CDSParser = exports.LanguageServerTypes = exports.DDLParser = exports.NativeSQL = exports.MacroContent = exports.MacroCall = exports.applyEditList = exports.applyEditSingle = exports.SpaghettiScopeNode = exports.AbstractFile = exports.Token = exports.ScopeType = exports.BasicTypes = exports.TypedIdentifier = exports.AbstractType = exports.VirtualPosition = exports.Comment = exports.Unknown = exports.Empty = exports.Identifier = exports.Nodes = exports.Types = exports.Expressions = exports.Statements = exports.Structures = exports.SkipLogic = exports.Objects = exports.ArtifactsRules = exports.ArtifactsObjects = exports.ArtifactsABAP = exports.BuiltIn = exports.MethodLengthStats = exports.LanguageServer = exports.Registry = exports.CyclomaticComplexityStats = exports.Version = exports.Config = exports.Issue = exports.MemoryFile = void 0;
3
+ exports.Rename = exports.PrettyPrinter = exports.Position = exports.CurrentScope = exports.RulesRunner = exports.SpaghettiScope = exports.SyntaxLogic = exports.ABAPObject = exports.Tokens = exports.ExpressionsCDS = exports.CDSParser = exports.LanguageServerTypes = exports.DDLParser = exports.AbstractFile = exports.ABAPFile = exports.MemoryFile = exports.Edits = exports.ReferenceType = exports.NativeSQL = exports.MacroContent = exports.MacroCall = exports.SpaghettiScopeNode = exports.Token = exports.ScopeType = exports.BasicTypes = exports.TypedIdentifier = exports.AbstractType = exports.VirtualPosition = exports.Comment = exports.Unknown = exports.Empty = exports.Identifier = exports.Nodes = exports.Types = exports.Expressions = exports.Statements = exports.Structures = exports.SkipLogic = exports.Objects = exports.ArtifactsRules = exports.ArtifactsObjects = exports.ArtifactsABAP = exports.BuiltIn = exports.MethodLengthStats = exports.LanguageServer = exports.Registry = exports.CyclomaticComplexityStats = exports.Version = exports.Config = exports.Issue = void 0;
4
4
  exports.LSPEdit = exports.RuleTag = exports.Severity = exports.Visibility = exports.Info = exports.Diagnostics = void 0;
5
5
  const issue_1 = require("./issue");
6
6
  Object.defineProperty(exports, "Issue", { enumerable: true, get: function () { return issue_1.Issue; } });
@@ -73,8 +73,6 @@ Object.defineProperty(exports, "MacroCall", { enumerable: true, get: function ()
73
73
  Object.defineProperty(exports, "MacroContent", { enumerable: true, get: function () { return _statement_1.MacroContent; } });
74
74
  Object.defineProperty(exports, "NativeSQL", { enumerable: true, get: function () { return _statement_1.NativeSQL; } });
75
75
  const edit_helper_1 = require("./edit_helper");
76
- Object.defineProperty(exports, "applyEditSingle", { enumerable: true, get: function () { return edit_helper_1.applyEditSingle; } });
77
- Object.defineProperty(exports, "applyEditList", { enumerable: true, get: function () { return edit_helper_1.applyEditList; } });
78
76
  const _builtin_1 = require("./abap/5_syntax/_builtin");
79
77
  Object.defineProperty(exports, "BuiltIn", { enumerable: true, get: function () { return _builtin_1.BuiltIn; } });
80
78
  const abap_file_1 = require("./abap/abap_file");
@@ -107,4 +105,13 @@ const diagnostics_1 = require("./lsp/diagnostics");
107
105
  Object.defineProperty(exports, "Diagnostics", { enumerable: true, get: function () { return diagnostics_1.Diagnostics; } });
108
106
  const _edit_1 = require("./lsp/_edit");
109
107
  Object.defineProperty(exports, "LSPEdit", { enumerable: true, get: function () { return _edit_1.LSPEdit; } });
108
+ const _reference_1 = require("./abap/5_syntax/_reference");
109
+ Object.defineProperty(exports, "ReferenceType", { enumerable: true, get: function () { return _reference_1.ReferenceType; } });
110
+ // do not include this file from anywhere within abaplint
111
+ // https://github.com/abaplint/abaplint/issues/873
112
+ const Edits = {
113
+ applyEditSingle: edit_helper_1.applyEditSingle,
114
+ applyEditList: edit_helper_1.applyEditList,
115
+ };
116
+ exports.Edits = Edits;
110
117
  //# sourceMappingURL=index.js.map
@@ -67,7 +67,7 @@ class Registry {
67
67
  }
68
68
  static abaplintVersion() {
69
69
  // magic, see build script "version.sh"
70
- return "2.113.111";
70
+ return "2.113.113";
71
71
  }
72
72
  getDDICReferences() {
73
73
  return this.ddicReferences;
@@ -7,7 +7,7 @@ const _abap_rule_1 = require("./_abap_rule");
7
7
  const _basic_rule_config_1 = require("./_basic_rule_config");
8
8
  const _irule_1 = require("./_irule");
9
9
  const position_1 = require("../position");
10
- const __1 = require("..");
10
+ const Statements = require("../abap/2_statements/statements");
11
11
  const edit_helper_1 = require("../edit_helper");
12
12
  class AlignParametersConf extends _basic_rule_config_1.BasicRuleConfig {
13
13
  }
@@ -215,9 +215,9 @@ DATA(sdf) = VALUE type(
215
215
  }
216
216
  raiseAndCreateCandidates(stru) {
217
217
  const candidates = [];
218
- const statements = stru.findAllStatements(__1.Statements.Raise);
219
- statements.push(...stru.findAllStatements(__1.Statements.CreateObject));
220
- statements.push(...stru.findAllStatements(__1.Statements.RaiseEvent));
218
+ const statements = stru.findAllStatements(Statements.Raise);
219
+ statements.push(...stru.findAllStatements(Statements.CreateObject));
220
+ statements.push(...stru.findAllStatements(Statements.RaiseEvent));
221
221
  for (const raise of statements) {
222
222
  const parameters = [];
223
223
  const param = raise.findDirectExpression(Expressions.ParameterListS);
@@ -4,7 +4,8 @@ exports.ConstantClasses = exports.ConstantClassesConf = void 0;
4
4
  const issue_1 = require("../issue");
5
5
  const _basic_rule_config_1 = require("./_basic_rule_config");
6
6
  const _irule_1 = require("./_irule");
7
- const __1 = require("..");
7
+ const Objects = require("../objects");
8
+ const visibility_1 = require("../abap/4_file_information/visibility");
8
9
  /** Checks that constants classes are in sync with domain fixed values */
9
10
  class ConstantClassesConf extends _basic_rule_config_1.BasicRuleConfig {
10
11
  constructor() {
@@ -40,7 +41,7 @@ class ConstantClasses {
40
41
  run(obj) {
41
42
  if (this.conf
42
43
  && this.conf.mapping
43
- && obj instanceof __1.Objects.Domain) {
44
+ && obj instanceof Objects.Domain) {
44
45
  const configEntry = this.conf.mapping.find(x => x.domain.toUpperCase() === obj.getName().toUpperCase());
45
46
  if (!configEntry) {
46
47
  return [];
@@ -84,7 +85,7 @@ class ConstantClasses {
84
85
  issues.push(this.issueAtConstant(constant, `Use exact type ${configEntry.domain} instead of ${constant.typeName}`));
85
86
  // quickfix will change the type
86
87
  }
87
- if (constant.visibility !== __1.Visibility.Public) {
88
+ if (constant.visibility !== visibility_1.Visibility.Public) {
88
89
  issues.push(this.issueAtConstant(constant, `Constant ${constant.name} should be public`));
89
90
  // quickfix will move constant
90
91
  }
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.FunctionModuleRecommendations = exports.FunctionModuleRecommendationsConf = void 0;
4
- const __1 = require("..");
5
4
  const expressions_1 = require("../abap/2_statements/expressions");
5
+ const issue_1 = require("../issue");
6
6
  const _abap_rule_1 = require("./_abap_rule");
7
7
  const _basic_rule_config_1 = require("./_basic_rule_config");
8
8
  const _irule_1 = require("./_irule");
@@ -85,7 +85,7 @@ class FunctionModuleRecommendations extends _abap_rule_1.ABAPRule {
85
85
  funcName = funcName.slice(1, funcName.length - 1);
86
86
  const index = this.conf.recommendations.findIndex(i => i.name.toUpperCase() === funcName && (i.from === undefined || configVersion >= i.from));
87
87
  if (index >= 0) {
88
- issues.push(__1.Issue.atToken(file, token, this.getMessage(index), this.getMetadata().key, this.conf.severity));
88
+ issues.push(issue_1.Issue.atToken(file, token, this.getMessage(index), this.getMetadata().key, this.conf.severity));
89
89
  }
90
90
  }
91
91
  return issues;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.MethodOverwritesBuiltIn = exports.MethodOverwritesBuiltInConf = void 0;
4
- const __1 = require("..");
5
4
  const _builtin_1 = require("../abap/5_syntax/_builtin");
5
+ const issue_1 = require("../issue");
6
6
  const _abap_rule_1 = require("./_abap_rule");
7
7
  const _basic_rule_config_1 = require("./_basic_rule_config");
8
8
  const _irule_1 = require("./_irule");
@@ -52,7 +52,7 @@ ENDCLASS.`,
52
52
  for (const method of methods) {
53
53
  if (builtIn.searchBuiltin(method.name.toUpperCase())) {
54
54
  const message = `Method name "${method.name}" overwrites built-in SAP function name`;
55
- issues.push(__1.Issue.atIdentifier(method.identifier, message, this.getMetadata().key));
55
+ issues.push(issue_1.Issue.atIdentifier(method.identifier, message, this.getMetadata().key));
56
56
  }
57
57
  }
58
58
  return issues;
@@ -6,7 +6,8 @@ const _abap_rule_1 = require("./_abap_rule");
6
6
  const _basic_rule_config_1 = require("./_basic_rule_config");
7
7
  const edit_helper_1 = require("../edit_helper");
8
8
  const _irule_1 = require("./_irule");
9
- const __1 = require("..");
9
+ const version_1 = require("../version");
10
+ const Statements = require("../abap/2_statements/statements");
10
11
  class PreferRaiseExceptionNewConf extends _basic_rule_config_1.BasicRuleConfig {
11
12
  }
12
13
  exports.PreferRaiseExceptionNewConf = PreferRaiseExceptionNewConf;
@@ -38,12 +39,12 @@ From 752 and up`,
38
39
  this.conf = conf;
39
40
  }
40
41
  runParsed(file) {
41
- if (this.reg.getConfig().getVersion() < __1.Version.v752) {
42
+ if (this.reg.getConfig().getVersion() < version_1.Version.v752) {
42
43
  return [];
43
44
  }
44
45
  const issues = [];
45
46
  for (const statement of file.getStatements()) {
46
- if (statement.get() instanceof __1.Statements.Raise) {
47
+ if (statement.get() instanceof Statements.Raise) {
47
48
  const concat = statement.concatTokens().toUpperCase();
48
49
  if (concat.includes(" MESSAGE")) {
49
50
  continue;
@@ -1,11 +1,15 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SelectSingleFullKey = exports.SelectSingleFullKeyConf = void 0;
4
- const issue_1 = require("../issue");
4
+ const _abap_object_1 = require("../objects/_abap_object");
5
5
  const _basic_rule_config_1 = require("./_basic_rule_config");
6
- const _irule_1 = require("./_irule");
7
- const __1 = require("..");
8
6
  const edit_helper_1 = require("../edit_helper");
7
+ const _irule_1 = require("./_irule");
8
+ const issue_1 = require("../issue");
9
+ const syntax_1 = require("../abap/5_syntax/syntax");
10
+ const Expressions = require("../abap/2_statements/expressions");
11
+ const Statements = require("../abap/2_statements/statements");
12
+ const _statement_1 = require("../abap/2_statements/statements/_statement");
9
13
  class SelectSingleFullKeyConf extends _basic_rule_config_1.BasicRuleConfig {
10
14
  constructor() {
11
15
  super(...arguments);
@@ -55,10 +59,10 @@ If the statement contains a JOIN it is not checked`,
55
59
  }
56
60
  run(obj) {
57
61
  var _a, _b;
58
- if (!(obj instanceof __1.ABAPObject)) {
62
+ if (!(obj instanceof _abap_object_1.ABAPObject)) {
59
63
  return [];
60
64
  }
61
- const syntax = new __1.SyntaxLogic(this.reg, obj).run();
65
+ const syntax = new syntax_1.SyntaxLogic(this.reg, obj).run();
62
66
  if (syntax.issues.length > 0) {
63
67
  return [];
64
68
  }
@@ -68,21 +72,21 @@ If the statement contains a JOIN it is not checked`,
68
72
  const statements = file.getStatements();
69
73
  for (let i = 0; i < statements.length; i++) {
70
74
  const s = statements[i];
71
- if (!(s.get() instanceof __1.Statements.Select)) {
75
+ if (!(s.get() instanceof Statements.Select)) {
72
76
  continue;
73
77
  }
74
- else if (s.findFirstExpression(__1.Expressions.SQLJoin)) {
78
+ else if (s.findFirstExpression(Expressions.SQLJoin)) {
75
79
  continue;
76
80
  }
77
81
  else if (s.findTokenSequencePosition("SELECT", "SINGLE") === undefined) {
78
82
  continue;
79
83
  }
80
- const databaseTable = s.findFirstExpression(__1.Expressions.DatabaseTable);
84
+ const databaseTable = s.findFirstExpression(Expressions.DatabaseTable);
81
85
  if (databaseTable === undefined) {
82
86
  continue;
83
87
  }
84
88
  const next = statements[i + 1];
85
- if ((next === null || next === void 0 ? void 0 : next.get()) instanceof __1.Comment
89
+ if ((next === null || next === void 0 ? void 0 : next.get()) instanceof _statement_1.Comment
86
90
  && next.concatTokens().includes(this.getMetadata().pseudoComment + "")) {
87
91
  if (this.getConfig().allowPseudo !== true) {
88
92
  issues.push(issue_1.Issue.atStatement(file, s, "Pseudo comment not allowed", this.getMetadata().key, this.getConfig().severity));
@@ -95,7 +99,7 @@ If the statement contains a JOIN it is not checked`,
95
99
  continue;
96
100
  }
97
101
  const keys = table.listKeys(this.reg);
98
- const cond = s.findFirstExpression(__1.Expressions.SQLCond);
102
+ const cond = s.findFirstExpression(Expressions.SQLCond);
99
103
  const set = new Set();
100
104
  for (const key of keys) {
101
105
  if (key === "MANDT") {
@@ -104,10 +108,10 @@ If the statement contains a JOIN it is not checked`,
104
108
  }
105
109
  set.add(key);
106
110
  }
107
- for (const compare of (cond === null || cond === void 0 ? void 0 : cond.findAllExpressionsRecursive(__1.Expressions.SQLCompare)) || []) {
111
+ for (const compare of (cond === null || cond === void 0 ? void 0 : cond.findAllExpressionsRecursive(Expressions.SQLCompare)) || []) {
108
112
  if (compare.getChildren().length === 3) {
109
- const fname = (_a = compare.findDirectExpression(__1.Expressions.SQLFieldName)) === null || _a === void 0 ? void 0 : _a.concatTokens().toUpperCase();
110
- const operator = (_b = compare.findDirectExpression(__1.Expressions.SQLCompareOperator)) === null || _b === void 0 ? void 0 : _b.concatTokens().toUpperCase();
113
+ const fname = (_a = compare.findDirectExpression(Expressions.SQLFieldName)) === null || _a === void 0 ? void 0 : _a.concatTokens().toUpperCase();
114
+ const operator = (_b = compare.findDirectExpression(Expressions.SQLCompareOperator)) === null || _b === void 0 ? void 0 : _b.concatTokens().toUpperCase();
111
115
  if (fname && (operator === "=" || operator === "EQ")) {
112
116
  set.delete(fname);
113
117
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.113.111",
3
+ "version": "2.113.113",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",