json-as 0.8.0 → 0.8.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-as",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "JSON encoder/decoder for AssemblyScript",
5
5
  "types": "assembly/index.ts",
6
6
  "author": "Jairus Tanaka",
@@ -70,7 +70,7 @@ class AsJSONTransform extends BaseVisitor {
70
70
  if (mem.type && mem.type.name && mem.type.name.identifier.text) {
71
71
  const member = mem;
72
72
  const lineText = toString(member);
73
- console.log("Member: " + lineText);
73
+ //console.log("Member: " + lineText)
74
74
  if (!lineText.startsWith("private") && !lineText.startsWith("static")) {
75
75
  // @ts-ignore
76
76
  let type = toString(member.type);
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@json-as/transform",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "JSON encoder/decoder for AssemblyScript",
5
5
  "main": "./lib/index.js",
6
6
  "author": "Jairus Tanaka",
@@ -84,7 +84,7 @@ class AsJSONTransform extends BaseVisitor {
84
84
  if (mem.type && mem.type.name && mem.type.name.identifier.text) {
85
85
  const member = mem as FieldDeclaration;
86
86
  const lineText = toString(member);
87
- console.log("Member: " + lineText)
87
+ //console.log("Member: " + lineText)
88
88
 
89
89
  if (!lineText.startsWith("private") && !lineText.startsWith("static")) {
90
90