Skip to content

Commit

Permalink
fix(JS: BitSet): Export the BitSet class as it is now used in the Err…
Browse files Browse the repository at this point in the history
…orListener

Signed-off-by: hutcheb <ben.hutche@gmail.com>
  • Loading branch information
hutcheb committed Dec 12, 2024
1 parent 6722835 commit af4c4f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions runtime/JavaScript/src/antlr4/misc/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './BitSet'
export * from './Interval'
export * from './IntervalSet';

3 changes: 2 additions & 1 deletion runtime/JavaScript/src/antlr4/misc/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import BitSet from './BitSet.js';
import Interval from './Interval.js';
import IntervalSet from './IntervalSet.js';

export default { Interval, IntervalSet }
export default { BitSet, Interval, IntervalSet }

0 comments on commit af4c4f8

Please sign in to comment.