-
Notifications
You must be signed in to change notification settings - Fork 464
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
Jsx ast #7286
base: master
Are you sure you want to change the base?
Jsx ast #7286
Changes from all commits
db7eee6
28aa287
b57f2df
32161a3
d714829
e27b339
92657ee
441de6e
bf1b411
5fe5f12
9251609
1aaa686
b374212
c91aeda
85ccab4
86c9f5f
0dfd5b6
203ff25
a273f2e
998edbe
fcf2d90
162b7a2
9b815a0
9408d06
cc5beb4
02e9fc9
5e060ea
e57ab30
b6407d0
e565ca7
84e9cbe
bbfe816
63fc87b
d6c9fa8
e446ae1
5fef337
251244b
aec0d8e
6a3f4c9
506dda3
96839f4
ff1bb65
91c283e
2b9b5ce
0133f91
aaef8ac
b863888
7f8bf01
4e0951c
7843795
9e68c1a
53616a7
25e20b8
ad72bf2
7ba4996
f09cd70
aa1d978
0ee7601
bd45146
2d50ff8
fcabcff
ddcdaa2
52ecf03
cd9059f
2e9fb66
37755ae
3a434c9
6cf1e71
ae9b428
f3b96df
b1f8dfe
64001e2
8148cf5
cfc4669
2946ea0
4fcc3ce
161b12c
cd98c9f
67da647
86fea57
f10bc55
b40c019
28497d2
e7bf344
b8d609e
6d15369
88534ba
210fa87
8373814
d92d7c5
d9b59dd
4e160f3
93eb5af
6152b83
2126fc9
645b244
a0c0d0d
f1da36f
80c307a
5e5dabd
091f1a3
11ced99
0c825d5
8ff481d
8723426
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1232,8 +1232,6 @@ let completionWithParser1 ~currentFile ~debug ~offset ~path ~posCursor | |
then ValueOrField | ||
else Value); | ||
})) | ||
| Pexp_construct ({txt = Lident ("::" | "()")}, _) -> | ||
(* Ignore list expressions, used in JSX, unit, and more *) () | ||
| Pexp_construct (lid, eOpt) -> ( | ||
let lidPath = flattenLidCheckDot lid in | ||
if debug then | ||
|
@@ -1324,10 +1322,29 @@ let completionWithParser1 ~currentFile ~debug ~offset ~path ~posCursor | |
inJsx = !inJsxContext; | ||
})) | ||
| None -> ()) | ||
| Pexp_apply {funct = {pexp_desc = Pexp_ident compName}; args} | ||
when Res_parsetree_viewer.is_jsx_expression expr -> | ||
| Pexp_jsx_element | ||
( Jsx_unary_element | ||
{ | ||
jsx_unary_element_tag_name = compName; | ||
jsx_unary_element_props = props; | ||
} | ||
| Jsx_container_element | ||
{ | ||
jsx_container_element_tag_name_start = compName; | ||
jsx_container_element_props = props; | ||
} ) -> | ||
inJsxContext := true; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm curious why do we need There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is used in CompletionBackEnd to autocomplete |
||
let jsxProps = CompletionJsx.extractJsxProps ~compName ~args in | ||
let children = | ||
match expr.pexp_desc with | ||
| Pexp_jsx_element | ||
(Jsx_container_element | ||
{jsx_container_element_children = children}) -> | ||
children | ||
| _ -> JSXChildrenItems [] | ||
in | ||
let jsxProps = | ||
CompletionJsx.extractJsxProps ~compName ~props ~children | ||
in | ||
let compNamePath = flattenLidCheckDot ~jsx:true compName in | ||
if debug then | ||
Printf.printf "JSX <%s:%s %s> _children:%s\n" | ||
|
@@ -1344,10 +1361,21 @@ let completionWithParser1 ~currentFile ~debug ~offset ~path ~posCursor | |
| None -> "None" | ||
| Some childrenPosStart -> Pos.toString childrenPosStart); | ||
let jsxCompletable = | ||
CompletionJsx.findJsxPropsCompletable ~jsxProps | ||
~endPos:(Loc.end_ expr.pexp_loc) ~posBeforeCursor | ||
~posAfterCompName:(Loc.end_ compName.loc) | ||
~firstCharBeforeCursorNoWhite ~charAtCursor | ||
match expr.pexp_desc with | ||
| Pexp_jsx_element | ||
(Jsx_container_element | ||
{ | ||
jsx_container_element_closing_tag = None; | ||
jsx_container_element_children = | ||
JSXChildrenSpreading _ | JSXChildrenItems (_ :: _); | ||
}) -> | ||
(* This is a weird edge case where there is no closing tag but there are children *) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Is that an example of such a case? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yup! |
||
None | ||
| _ -> | ||
CompletionJsx.findJsxPropsCompletable ~jsxProps | ||
~endPos:(Loc.end_ expr.pexp_loc) ~posBeforeCursor | ||
~posAfterCompName:(Loc.end_ compName.loc) | ||
~firstCharBeforeCursorNoWhite ~charAtCursor | ||
in | ||
if jsxCompletable <> None then setResultOpt jsxCompletable | ||
else if compName.loc |> Loc.hasPos ~pos:posBeforeCursor then | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thoughts about pros/cons of unifying the jsx ast nodes into one?
In this case, perhaps one could streamline the code a bit more, but don't know about the rest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe combining these is beneficial, although it may not be a game changer. If you don't need to handle JSX, you can avoid a single branch in your match. However, if you do need to handle them, you'll need to address all of them.