@abaplint/core 2.120.55 → 2.120.57

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.
@@ -39,7 +39,8 @@ const Expressions = __importStar(require("."));
39
39
  const tokens_1 = require("../../1_lexer/tokens");
40
40
  class MethodDefReturning extends combi_1.Expression {
41
41
  getRunnable() {
42
- const value = (0, combi_1.seq)("VALUE", (0, combi_1.tok)(tokens_1.ParenLeft), Expressions.MethodParamName, (0, combi_1.tok)(tokens_1.ParenRightW));
42
+ // see MethodParam: the lexer gives "!VALUE" as one Identifier
43
+ const value = (0, combi_1.seq)((0, combi_1.altPrio)("VALUE", "!VALUE"), (0, combi_1.tok)(tokens_1.ParenLeft), Expressions.MethodParamName, (0, combi_1.tok)(tokens_1.ParenRightW));
43
44
  return (0, combi_1.seq)("RETURNING", value, Expressions.TypeParam);
44
45
  }
45
46
  }
@@ -39,8 +39,11 @@ const Expressions = __importStar(require("."));
39
39
  const tokens_1 = require("../../1_lexer/tokens");
40
40
  class MethodParam extends combi_1.Expression {
41
41
  getRunnable() {
42
- const ref = (0, combi_1.seq)("REFERENCE", (0, combi_1.tok)(tokens_1.ParenLeft), Expressions.MethodParamName, (0, combi_1.tok)(tokens_1.ParenRightW));
43
- const value = (0, combi_1.seq)("VALUE", (0, combi_1.tok)(tokens_1.ParenLeft), Expressions.MethodParamName, (0, combi_1.tok)(tokens_1.ParenRightW));
42
+ // The escape is part of the token: the lexer gives "!VALUE" as a single
43
+ // Identifier, so a literal "VALUE" cannot match it and the whole METHODS
44
+ // statement falls back to Unknown.
45
+ const ref = (0, combi_1.seq)((0, combi_1.altPrio)("REFERENCE", "!REFERENCE"), (0, combi_1.tok)(tokens_1.ParenLeft), Expressions.MethodParamName, (0, combi_1.tok)(tokens_1.ParenRightW));
46
+ const value = (0, combi_1.seq)((0, combi_1.altPrio)("VALUE", "!VALUE"), (0, combi_1.tok)(tokens_1.ParenLeft), Expressions.MethodParamName, (0, combi_1.tok)(tokens_1.ParenRightW));
44
47
  const fieldsOrValue = (0, combi_1.seq)((0, combi_1.altPrio)(value, ref, Expressions.MethodParamName), Expressions.TypeParam);
45
48
  return fieldsOrValue;
46
49
  }
@@ -305,6 +305,10 @@ class StatementParser {
305
305
  let add = [];
306
306
  let pre = [];
307
307
  let colon = undefined;
308
+ // inside EXEC SQL and an AMDP body a colon reads a host variable, ":lv_a",
309
+ // and is not the chaining marker; recognized here because nativeSQL() runs
310
+ // afterwards and can only re-wrap what this has already cut
311
+ let native = false;
308
312
  for (const token of wa.tokens) {
309
313
  if (token instanceof Tokens.Comment) {
310
314
  wa.statements.push(new nodes_1.StatementNode(new _statement_1.Comment()).setChildren(this.tokensToNodes([token])));
@@ -314,6 +318,7 @@ class StatementParser {
314
318
  const str = token.getStr();
315
319
  if (str.length === 1) {
316
320
  if (str === ".") {
321
+ native = this.nativeAfter(native, add, colon);
317
322
  wa.addUnknown(pre, add, colon);
318
323
  add = [];
319
324
  pre = [];
@@ -323,13 +328,13 @@ class StatementParser {
323
328
  wa.addUnknown(pre, add, colon);
324
329
  add = [];
325
330
  }
326
- else if (str === ":" && colon === undefined) {
331
+ else if (str === ":" && colon === undefined && native === false) {
327
332
  colon = token;
328
333
  add.pop(); // do not add colon token to statement
329
334
  pre.push(...add);
330
335
  add = [];
331
336
  }
332
- else if (str === ":") {
337
+ else if (str === ":" && native === false) {
333
338
  add.pop(); // do not add colon token to statement
334
339
  }
335
340
  }
@@ -338,6 +343,36 @@ class StatementParser {
338
343
  wa.addUnknown(pre, add, colon);
339
344
  }
340
345
  }
346
+ /** whether the statement that just ended opens or closes a region where a
347
+ * colon belongs to the statement rather than chaining it */
348
+ nativeAfter(native, tokens, colon) {
349
+ // a pragma sits between the closing keyword and the period, so it is left
350
+ // out before the last word is read: "ENDEXEC ##NEEDED." closes the region
351
+ const words = tokens.filter(t => !(t instanceof Tokens.Pragma)).map(t => t.getStr().toUpperCase());
352
+ // a native body usually arrives as one blob terminated by its own closing
353
+ // keyword, so the terminator is the word before the period
354
+ if (words[words.length - 2] === "ENDEXEC" || words[words.length - 2] === "ENDMETHOD") {
355
+ return false;
356
+ }
357
+ if (colon !== undefined) {
358
+ // a fragment of a chain cannot OPEN a region: it is only part of a
359
+ // statement, and taking "DATA: lv_a TYPE i, exec sql." for one would
360
+ // turn chaining off for the rest of the file
361
+ return native;
362
+ }
363
+ if (words[0] === "EXEC" && words[1] === "SQL") {
364
+ return true;
365
+ }
366
+ // "BY DATABASE" as well as LANGUAGE, and not LANGUAGE alone: a method
367
+ // may be NAMED language
368
+ if (words[0] === "METHOD"
369
+ && words.includes("BY")
370
+ && words.includes("DATABASE")
371
+ && words.includes("LANGUAGE")) {
372
+ return true;
373
+ }
374
+ return native;
375
+ }
341
376
  }
342
377
  exports.StatementParser = StatementParser;
343
378
  //# sourceMappingURL=statement_parser.js.map
@@ -333,7 +333,9 @@ class MethodParameters {
333
333
  }
334
334
  isPassByValue(param) {
335
335
  var _a;
336
- return param.getFirstToken().getStr().toUpperCase() === "VALUE"
336
+ // "!" is the identifier escape, generated code has eg. "IMPORTING !VALUE(iv_foo)"
337
+ const first = param.getFirstToken().getStr().toUpperCase();
338
+ return (first === "VALUE" || first === "!VALUE")
337
339
  && ((_a = param.getChildren()[1]) === null || _a === void 0 ? void 0 : _a.getFirstToken().getStr()) === "(";
338
340
  }
339
341
  }
@@ -75,7 +75,7 @@ class Registry {
75
75
  }
76
76
  static abaplintVersion() {
77
77
  // magic, see build script "version.js"
78
- return "2.120.55";
78
+ return "2.120.57";
79
79
  }
80
80
  getDDICReferences() {
81
81
  return this.ddicReferences;
@@ -148,6 +148,7 @@ __exportStar(require("./prefer_inline"), exports);
148
148
  __exportStar(require("./prefer_insert_into_table"), exports);
149
149
  __exportStar(require("./prefer_is_not"), exports);
150
150
  __exportStar(require("./prefer_pragmas"), exports);
151
+ __exportStar(require("./prefer_abap_bool"), exports);
151
152
  __exportStar(require("./prefer_raise_exception_new"), exports);
152
153
  __exportStar(require("./prefer_returning_to_exporting"), exports);
153
154
  __exportStar(require("./prefer_xsdbool"), exports);
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.PreferAbapBool = exports.PreferAbapBoolConf = void 0;
37
+ const issue_1 = require("../issue");
38
+ const _abap_rule_1 = require("./_abap_rule");
39
+ const Expressions = __importStar(require("../abap/2_statements/expressions"));
40
+ const Statements = __importStar(require("../abap/2_statements/statements"));
41
+ const _basic_rule_config_1 = require("./_basic_rule_config");
42
+ const _irule_1 = require("./_irule");
43
+ const edit_helper_1 = require("../edit_helper");
44
+ const FORBIDDEN_TYPES = new Set(["XFELD", "SAP_BOOL", "BOOLE_D", "FLAG"]);
45
+ class PreferAbapBoolConf extends _basic_rule_config_1.BasicRuleConfig {
46
+ }
47
+ exports.PreferAbapBoolConf = PreferAbapBoolConf;
48
+ class PreferAbapBool extends _abap_rule_1.ABAPRule {
49
+ constructor() {
50
+ super(...arguments);
51
+ this.conf = new PreferAbapBoolConf();
52
+ }
53
+ getMetadata() {
54
+ return {
55
+ key: "prefer_abap_bool",
56
+ title: "Prefer abap_bool",
57
+ shortDescription: `Use abap_bool instead of XFELD, SAP_BOOL, BOOLE_D, FLAG for boolean variables`,
58
+ extendedInformation: `https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#use-abap_bool-for-booleans`,
59
+ tags: [_irule_1.RuleTag.Styleguide, _irule_1.RuleTag.SingleFile, _irule_1.RuleTag.Quickfix],
60
+ badExample: `DATA foo TYPE xfeld.`,
61
+ goodExample: `DATA foo TYPE abap_bool.`,
62
+ };
63
+ }
64
+ getConfig() {
65
+ return this.conf;
66
+ }
67
+ setConfig(conf) {
68
+ this.conf = conf;
69
+ }
70
+ runParsed(file) {
71
+ const issues = [];
72
+ const structure = file.getStructure();
73
+ if (structure === undefined) {
74
+ return [];
75
+ }
76
+ const statements = [
77
+ ...structure.findAllStatements(Statements.Data),
78
+ ...structure.findAllStatements(Statements.ClassData),
79
+ ...structure.findAllStatements(Statements.Constant),
80
+ ...structure.findAllStatements(Statements.Type),
81
+ ...structure.findAllStatements(Statements.FieldSymbol),
82
+ ];
83
+ for (const stat of statements) {
84
+ const typeNameExpr = stat.findFirstExpression(Expressions.TypeName);
85
+ if (typeNameExpr === undefined) {
86
+ continue;
87
+ }
88
+ const typeName = typeNameExpr.concatTokens().toUpperCase();
89
+ if (FORBIDDEN_TYPES.has(typeName) === false) {
90
+ continue;
91
+ }
92
+ const token = typeNameExpr.getFirstToken();
93
+ const fix = edit_helper_1.EditHelper.replaceToken(file, token, "abap_bool");
94
+ issues.push(issue_1.Issue.atToken(file, token, `Use abap_bool instead of ${typeName}`, this.getMetadata().key, this.conf.severity, fix));
95
+ }
96
+ return issues;
97
+ }
98
+ }
99
+ exports.PreferAbapBool = PreferAbapBool;
100
+ //# sourceMappingURL=prefer_abap_bool.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.120.55",
3
+ "version": "2.120.57",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",