@idlizer/core 2.0.28 → 2.0.30

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.
@@ -103,8 +103,8 @@ export class CustomPrintVisitor {
103
103
  else {
104
104
  // restore globalScope
105
105
  if (hasExtAttribute(node, IDLExtendedAttributes.GlobalScope)) {
106
- node.methods.map(it => this.visit(it, true));
107
- node.constants.map(it => this.visit(it, true));
106
+ node.methods.map(it => this.printMethod(it, true));
107
+ node.constants.map(it => this.printConstant(it));
108
108
  return;
109
109
  }
110
110
  let interfaces = node.inheritance;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idlizer/core",
3
- "version": "2.0.28",
3
+ "version": "2.0.30",
4
4
  "description": "",
5
5
  "types": "build/lib/src/index.d.ts",
6
6
  "exports": {
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "keywords": [],
36
36
  "dependencies": {
37
- "@koalaui/interop": "1.5.3",
37
+ "@koalaui/interop": "1.5.5",
38
38
  "typescript": "4.9.5",
39
39
  "@types/node": "^18.0.0"
40
40
  },