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
package/transform/lib/index.js
CHANGED
|
@@ -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);
|
package/transform/package.json
CHANGED
package/transform/src/index.ts
CHANGED
|
@@ -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
|
|