We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee9b725 commit 826cdfcCopy full SHA for 826cdfc
1 file changed
src/generators/json/utils/parameter-tree.mjs
@@ -128,16 +128,6 @@ export class ParameterTree {
128
)
129
);
130
}
131
-
132
- /**
133
- *
134
- * @param indent
135
- */
136
- walk(indent = 0) {
137
- console.log(' '.repeat(indent), 'parameters:', this.#parameters);
138
- console.log(' '.repeat(indent), 'children:');
139
- this.#children.map(child => child.walk(indent + 1));
140
- }
141
142
143
/**
0 commit comments