Skip to content

Commit

Permalink
src/ldump.js: fix incorrect field in constructor
Browse files Browse the repository at this point in the history
Found via #210 with thanks to @gudzpoz
  • Loading branch information
daurnimator committed Dec 2, 2024
1 parent eb2453c commit 8df9dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ldump.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const LUAC_FORMAT = 0; /* this is the official format */
class DumpState {
constructor() {
this.L = null;
this.write = null;
this.writer = null;
this.data = null;
this.strip = NaN;
this.status = NaN;
Expand Down

0 comments on commit 8df9dde

Please sign in to comment.