-
Notifications
You must be signed in to change notification settings - Fork 469
Make Jsx.element a private empty record to avoid unnecessary Primitive_option.some #7450
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7b1f950
Update react bindings in tests
cknitt b6fa249
Rename jsx preserve test to group jsx tests together
cknitt aa0b237
Add test for optional props
cknitt 0efbe7b
Make Jsx.element a private empty record to avoid unnecessary Primitiv…
cknitt 0b93205
Analysis test output change
cknitt 16aebdc
Naming in test
cknitt af98928
CHANGELOG
cknitt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Generated by ReScript, PLEASE EDIT WITH CARE | ||
|
||
import * as JsxRuntime from "react/jsx-runtime"; | ||
|
||
function Jsx_optional_props_test$ComponentWithOptionalProps(props) { | ||
return null; | ||
} | ||
|
||
let ComponentWithOptionalProps = { | ||
make: Jsx_optional_props_test$ComponentWithOptionalProps | ||
}; | ||
|
||
let _element = JsxRuntime.jsx(Jsx_optional_props_test$ComponentWithOptionalProps, { | ||
i: 1, | ||
s: "test", | ||
element: JsxRuntime.jsx("div", {}) | ||
}); | ||
|
||
export { | ||
ComponentWithOptionalProps, | ||
_element, | ||
} | ||
/* _element Not a pure module */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@@config({flags: ["-bs-jsx", "4"]}) | ||
|
||
module ComponentWithOptionalProps = { | ||
@react.component | ||
let make = ( | ||
~i as _: option<int>=?, | ||
~s as _: option<string>=?, | ||
~element as _: option<React.element>=?, | ||
) => React.null | ||
} | ||
|
||
let _element = <ComponentWithOptionalProps i=1 s="test" element={<div />} /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,32 @@ | ||
// Generated by ReScript, PLEASE EDIT WITH CARE | ||
|
||
|
||
let Ref = {}; | ||
import * as React from "react"; | ||
|
||
let Children = {}; | ||
|
||
let Context = {}; | ||
|
||
let Fragment = {}; | ||
|
||
let StrictMode = {}; | ||
|
||
let Suspense = {}; | ||
|
||
function lazy_(load) { | ||
return React.lazy(async () => ({ | ||
default: await load() | ||
})); | ||
} | ||
|
||
let Uncurried = {}; | ||
|
||
export { | ||
Ref, | ||
Children, | ||
Context, | ||
Fragment, | ||
StrictMode, | ||
Suspense, | ||
lazy_, | ||
Uncurried, | ||
} | ||
/* No side effect */ | ||
/* react Not a pure module */ |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.