Skip to content

Commit 26fa42a

Browse files
authored
Undeprecate Js_OO since it is still used (#7955)
* undeprecate Js_OO since it is still used * changelog
1 parent e1681e7 commit 26fa42a

File tree

2 files changed

+1
-23
lines changed

2 files changed

+1
-23
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#### :bug: Bug fix
2222

2323
- Fix: use configured Jsx module for constraining component return type. https://github.com/rescript-lang/rescript/pull/7945
24+
- Undeprecate `Js_OO` module since it is still used with the `@this` attribute. https://github.com/rescript-lang/rescript/pull/7955
2425

2526
#### :memo: Documentation
2627

packages/@rescript/runtime/Js_OO.res

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -24,52 +24,29 @@
2424

2525
@@config({flags: ["-unboxed-types"]})
2626

27-
@deprecated("This has been deprecated and will be removed in v13.")
2827
external unsafe_to_method: 'a => 'a = "%unsafe_to_method"
2928

3029
module Callback = {
31-
@deprecated("This has been deprecated and will be removed in v13.")
3230
type arity1<'a> = {@internal i1: 'a}
33-
@deprecated("This has been deprecated and will be removed in v13.")
3431
type arity2<'a> = {@internal i2: 'a}
35-
@deprecated("This has been deprecated and will be removed in v13.")
3632
type arity3<'a> = {@internal i3: 'a}
37-
@deprecated("This has been deprecated and will be removed in v13.")
3833
type arity4<'a> = {@internal i4: 'a}
39-
@deprecated("This has been deprecated and will be removed in v13.")
4034
type arity5<'a> = {@internal i5: 'a}
41-
@deprecated("This has been deprecated and will be removed in v13.")
4235
type arity6<'a> = {@internal i6: 'a}
43-
@deprecated("This has been deprecated and will be removed in v13.")
4436
type arity7<'a> = {@internal i7: 'a}
45-
@deprecated("This has been deprecated and will be removed in v13.")
4637
type arity8<'a> = {@internal i8: 'a}
47-
@deprecated("This has been deprecated and will be removed in v13.")
4838
type arity9<'a> = {@internal i9: 'a}
49-
@deprecated("This has been deprecated and will be removed in v13.")
5039
type arity10<'a> = {@internal i10: 'a}
51-
@deprecated("This has been deprecated and will be removed in v13.")
5240
type arity11<'a> = {@internal i11: 'a}
53-
@deprecated("This has been deprecated and will be removed in v13.")
5441
type arity12<'a> = {@internal i12: 'a}
55-
@deprecated("This has been deprecated and will be removed in v13.")
5642
type arity13<'a> = {@internal i13: 'a}
57-
@deprecated("This has been deprecated and will be removed in v13.")
5843
type arity14<'a> = {@internal i14: 'a}
59-
@deprecated("This has been deprecated and will be removed in v13.")
6044
type arity15<'a> = {@internal i15: 'a}
61-
@deprecated("This has been deprecated and will be removed in v13.")
6245
type arity16<'a> = {@internal i16: 'a}
63-
@deprecated("This has been deprecated and will be removed in v13.")
6446
type arity17<'a> = {@internal i17: 'a}
65-
@deprecated("This has been deprecated and will be removed in v13.")
6647
type arity18<'a> = {@internal i18: 'a}
67-
@deprecated("This has been deprecated and will be removed in v13.")
6848
type arity19<'a> = {@internal i19: 'a}
69-
@deprecated("This has been deprecated and will be removed in v13.")
7049
type arity20<'a> = {@internal i20: 'a}
71-
@deprecated("This has been deprecated and will be removed in v13.")
7250
type arity21<'a> = {@internal i21: 'a}
73-
@deprecated("This has been deprecated and will be removed in v13.")
7451
type arity22<'a> = {@internal i22: 'a}
7552
}

0 commit comments

Comments
 (0)