Skip to content

Commit 3b848a1

Browse files
committed
Fixed missing semicolon after 'extensions' and 'reserved' when generating proto files, fixes #810
1 parent 3a86c17 commit 3b848a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: cli/targets/proto.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function buildRanges(keyword, ranges) {
162162
parts.push(range[0] + " to " + (range[1] === 0x1FFFFFFF ? "max" : range[1]));
163163
});
164164
push("");
165-
push(keyword + " " + parts.join(", "));
165+
push(keyword + " " + parts.join(", ") + ";");
166166
}
167167
}
168168

0 commit comments

Comments
 (0)