quicktype-core 23.0.36 → 23.0.37
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/dist/language/Golang.js +1 -2
- package/package.json +1 -1
package/dist/language/Golang.js
CHANGED
|
@@ -88,8 +88,7 @@ class GoRenderer extends ConvenienceRenderer_1.ConvenienceRenderer {
|
|
|
88
88
|
return;
|
|
89
89
|
}
|
|
90
90
|
(0, Support_1.assert)(this._currentFilename === undefined, "Previous file wasn't finished: " + this._currentFilename);
|
|
91
|
-
|
|
92
|
-
this._currentFilename = `${this.sourcelikeToString(basename)}.go`.toLowerCase();
|
|
91
|
+
this._currentFilename = `${this.sourcelikeToString(basename)}.go`;
|
|
93
92
|
this.initializeEmitContextForFilename(this._currentFilename);
|
|
94
93
|
}
|
|
95
94
|
/// endFile pushes the current file name onto the collection of finished files and then resets the current file name. These finished files are used in index.ts to write the output.
|