@wavemaker/angular-codegen 11.6.1-rc.5540 → 11.6.1-rc.5542

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.
@@ -36,7 +36,7 @@
36
36
  "@metrichor/jmespath": "^0.3.1",
37
37
  "@wavemaker/focus-trap": "^1.0.0",
38
38
  "@wavemaker/nvd3": "1.8.9",
39
- "@wavemaker/variables": "11.6.1-rc.5540",
39
+ "@wavemaker/variables": "11.6.1-rc.5542",
40
40
  "@ztree/ztree_v3": "^3.5.48",
41
41
  "angular-imask": "6.3.0",
42
42
  "angular2-websocket": "0.9.7",
@@ -5947,9 +5947,9 @@
5947
5947
  }
5948
5948
  },
5949
5949
  "node_modules/@wavemaker/variables": {
5950
- "version": "11.6.1-rc.5540",
5951
- "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.6.1-rc.5540.tgz",
5952
- "integrity": "sha512-Pa88LAXAg7rVD2VB/U+hfcbKK+67pewFlrop6xLeFCYTXzgaWaYmn3fFr0ItK+/epRRGrafEoLSBl25zsWE98A==",
5950
+ "version": "11.6.1-rc.5542",
5951
+ "resolved": "https://registry.npmjs.org/@wavemaker/variables/-/variables-11.6.1-rc.5542.tgz",
5952
+ "integrity": "sha512-5yun3Ib7+fdxfOugN4Jx75937xU4EN5WYMaaau9wsADbMx4TOQQacGg1gGnbokwIkNHAMgfoxqHsDv2xsAqBXQ==",
5953
5953
  "dependencies": {
5954
5954
  "@metrichor/jmespath": "^0.3.1",
5955
5955
  "he": "^1.2.0",
@@ -47,7 +47,7 @@
47
47
  "@metrichor/jmespath": "^0.3.1",
48
48
  "@wavemaker/focus-trap": "^1.0.0",
49
49
  "@wavemaker/nvd3": "1.8.9",
50
- "@wavemaker/variables": "11.6.1-rc.5540",
50
+ "@wavemaker/variables": "11.6.1-rc.5542",
51
51
  "@ztree/ztree_v3": "^3.5.48",
52
52
  "angular-imask": "6.3.0",
53
53
  "angular2-websocket": "0.9.7",
@@ -72,7 +72,7 @@
72
72
  "tslib": "2.4.1",
73
73
  "x2js": "^3.4.4",
74
74
  "zone.js": "~0.11.4",
75
- "@wavemaker/app-ng-runtime": "11.6.1-rc.5540"
75
+ "@wavemaker/app-ng-runtime": "11.6.1-rc.5542"
76
76
  },
77
77
  "devDependencies": {
78
78
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -18994,6 +18994,14 @@ class ASTCompiler {
18994
18994
  }
18995
18995
  return this.handleBinaryDefault();
18996
18996
  }
18997
+ processUnary() {
18998
+ const ast = this.cAst;
18999
+ const stmts = this.cStmts;
19000
+ const e = this.build(ast.expr, stmts);
19001
+ const v = this.createVar();
19002
+ stmts.push(`${v}=${ast.operator}${e}`);
19003
+ return v;
19004
+ }
18997
19005
  processConditional() {
18998
19006
  const ast = this.cAst;
18999
19007
  const stmts = this.cStmts;
@@ -19085,6 +19093,9 @@ class ASTCompiler {
19085
19093
  else if (ast instanceof PrefixNot) {
19086
19094
  return this.processPrefixNot();
19087
19095
  }
19096
+ else if (ast instanceof Unary) {
19097
+ return this.processUnary();
19098
+ }
19088
19099
  else if (ast instanceof Binary) {
19089
19100
  return this.processBinary();
19090
19101
  }
@@ -93571,6 +93571,14 @@ let ASTCompiler$1 = class ASTCompiler {
93571
93571
  }
93572
93572
  return this.handleBinaryDefault();
93573
93573
  }
93574
+ processUnary() {
93575
+ const ast = this.cAst;
93576
+ const stmts = this.cStmts;
93577
+ const e = this.build(ast.expr, stmts);
93578
+ const v = this.createVar();
93579
+ stmts.push(`${v}=${ast.operator}${e}`);
93580
+ return v;
93581
+ }
93574
93582
  processConditional() {
93575
93583
  const ast = this.cAst;
93576
93584
  const stmts = this.cStmts;
@@ -93662,6 +93670,9 @@ let ASTCompiler$1 = class ASTCompiler {
93662
93670
  else if (ast instanceof PrefixNot$1) {
93663
93671
  return this.processPrefixNot();
93664
93672
  }
93673
+ else if (ast instanceof Unary$1) {
93674
+ return this.processUnary();
93675
+ }
93665
93676
  else if (ast instanceof Binary$1) {
93666
93677
  return this.processBinary();
93667
93678
  }
@@ -120408,6 +120419,14 @@ class ASTCompiler {
120408
120419
  }
120409
120420
  return this.handleBinaryDefault();
120410
120421
  }
120422
+ processUnary() {
120423
+ const ast = this.cAst;
120424
+ const stmts = this.cStmts;
120425
+ const e = this.build(ast.expr, stmts);
120426
+ const v = this.createVar();
120427
+ stmts.push(`${v}=${ast.operator}${e}`);
120428
+ return v;
120429
+ }
120411
120430
  processConditional() {
120412
120431
  const ast = this.cAst;
120413
120432
  const stmts = this.cStmts;
@@ -120500,6 +120519,9 @@ class ASTCompiler {
120500
120519
  else if (ast instanceof PrefixNot) {
120501
120520
  return this.processPrefixNot();
120502
120521
  }
120522
+ else if (ast instanceof Unary) {
120523
+ return this.processUnary();
120524
+ }
120503
120525
  else if (ast instanceof Binary) {
120504
120526
  return this.processBinary();
120505
120527
  }
@@ -57201,6 +57201,14 @@ class ASTCompiler {
57201
57201
  }
57202
57202
  return this.handleBinaryDefault();
57203
57203
  }
57204
+ processUnary() {
57205
+ const ast = this.cAst;
57206
+ const stmts = this.cStmts;
57207
+ const e = this.build(ast.expr, stmts);
57208
+ const v = this.createVar();
57209
+ stmts.push(`${v}=${ast.operator}${e}`);
57210
+ return v;
57211
+ }
57204
57212
  processConditional() {
57205
57213
  const ast = this.cAst;
57206
57214
  const stmts = this.cStmts;
@@ -57292,6 +57300,9 @@ class ASTCompiler {
57292
57300
  else if (ast instanceof PrefixNot) {
57293
57301
  return this.processPrefixNot();
57294
57302
  }
57303
+ else if (ast instanceof Unary) {
57304
+ return this.processUnary();
57305
+ }
57295
57306
  else if (ast instanceof Binary) {
57296
57307
  return this.processBinary();
57297
57308
  }
@@ -57201,6 +57201,14 @@ class ASTCompiler {
57201
57201
  }
57202
57202
  return this.handleBinaryDefault();
57203
57203
  }
57204
+ processUnary() {
57205
+ const ast = this.cAst;
57206
+ const stmts = this.cStmts;
57207
+ const e = this.build(ast.expr, stmts);
57208
+ const v = this.createVar();
57209
+ stmts.push(`${v}=${ast.operator}${e}`);
57210
+ return v;
57211
+ }
57204
57212
  processConditional() {
57205
57213
  const ast = this.cAst;
57206
57214
  const stmts = this.cStmts;
@@ -57292,6 +57300,9 @@ class ASTCompiler {
57292
57300
  else if (ast instanceof PrefixNot) {
57293
57301
  return this.processPrefixNot();
57294
57302
  }
57303
+ else if (ast instanceof Unary) {
57304
+ return this.processUnary();
57305
+ }
57295
57306
  else if (ast instanceof Binary) {
57296
57307
  return this.processBinary();
57297
57308
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.6.1-rc.5540",
3
+ "version": "11.6.1-rc.5542",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {