@abaplint/transpiler 2.12.19 → 2.12.20

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.
@@ -55,6 +55,10 @@ class DatabaseSetup {
55
55
  if (obj instanceof abaplint.Objects.MessageClass) {
56
56
  insert.push(...populateTables.insertT100(obj));
57
57
  }
58
+ else if (options?.populateTables?.wwwparams !== false
59
+ && obj instanceof abaplint.Objects.WebMIME) {
60
+ insert.push(...populateTables.insertWWWPARAMS(obj));
61
+ }
58
62
  else if (obj instanceof abaplint.Objects.Class
59
63
  || obj instanceof abaplint.Objects.Interface) {
60
64
  if (options?.populateTables?.reposrc !== false) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler",
3
- "version": "2.12.19",
3
+ "version": "2.12.20",
4
4
  "description": "Transpiler",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",