Skip to content

Commit cb85012

Browse files
authoredApr 3, 2025··
fix(JS: BitSet): Export the BitSet class as it is now used in the ErrorListener (#4746)
Signed-off-by: hutcheb <ben.hutche@gmail.com>
1 parent 7b53e13 commit cb85012

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
export * from './BitSet'
12
export * from './Interval'
23
export * from './IntervalSet';
34

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1+
import BitSet from './BitSet.js';
12
import Interval from './Interval.js';
23
import IntervalSet from './IntervalSet.js';
34

4-
export default { Interval, IntervalSet }
5+
export default { BitSet, Interval, IntervalSet }

0 commit comments

Comments
 (0)
Please sign in to comment.