Commit 82b624f
Fix return type for Bridging::fromJs (#56246)
Summary:
Pull Request resolved: #56246
Fixes return type to receive correct generic types.
Before:
```
static std::pair<T1, T1>
fromJs(facebook::jsi::Runtime &rt, const jsi::Array &array, const std::shared_ptr<CallInvoker> &jsInvoker)
```
After:
```
static std::pair<T1, T2>
fromJs(facebook::jsi::Runtime &rt, const jsi::Array &array, const std::shared_ptr<CallInvoker> &jsInvoker)
```
Changelog:
[Internal]
Reviewed By: cipolleschi
Differential Revision: D982928201 parent 40edd06 commit 82b624f
File tree
7 files changed
+7
-7
lines changed- packages/react-native/ReactCommon/react/bridging
- scripts/cxx-api/api-snapshots
7 files changed
+7
-7
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | | - | |
| 79 | + | |
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10416 | 10416 | | |
10417 | 10417 | | |
10418 | 10418 | | |
10419 | | - | |
| 10419 | + | |
10420 | 10420 | | |
10421 | 10421 | | |
10422 | 10422 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10243 | 10243 | | |
10244 | 10244 | | |
10245 | 10245 | | |
10246 | | - | |
| 10246 | + | |
10247 | 10247 | | |
10248 | 10248 | | |
10249 | 10249 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12874 | 12874 | | |
12875 | 12875 | | |
12876 | 12876 | | |
12877 | | - | |
| 12877 | + | |
12878 | 12878 | | |
12879 | 12879 | | |
12880 | 12880 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12701 | 12701 | | |
12702 | 12702 | | |
12703 | 12703 | | |
12704 | | - | |
| 12704 | + | |
12705 | 12705 | | |
12706 | 12706 | | |
12707 | 12707 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7179 | 7179 | | |
7180 | 7180 | | |
7181 | 7181 | | |
7182 | | - | |
| 7182 | + | |
7183 | 7183 | | |
7184 | 7184 | | |
7185 | 7185 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7170 | 7170 | | |
7171 | 7171 | | |
7172 | 7172 | | |
7173 | | - | |
| 7173 | + | |
7174 | 7174 | | |
7175 | 7175 | | |
7176 | 7176 | | |
| |||
0 commit comments