-
Notifications
You must be signed in to change notification settings - Fork 38
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
Loft uses kw arguments #4757
Loft uses kw arguments #4757
Conversation
QA Wolf here! As you write new code it's important that your test coverage is keeping up. |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
src/wasm-lib/kcl/src/std/loft.rs
Outdated
/// vDegree = 2, | ||
/// }) | ||
/// loft([squareSketch, circleSketch0, circleSketch1], | ||
/// baseCurveIndex: 0, |
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.
Had to remove comments due to #4763
bb0d86b
to
6c4916e
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4757 +/- ##
==========================================
+ Coverage 85.97% 86.02% +0.04%
==========================================
Files 84 84
Lines 30016 30036 +20
==========================================
+ Hits 25807 25837 +30
+ Misses 4209 4199 -10
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
2bef856
to
37df72e
Compare
37df72e
to
e3d4e53
Compare
7a82c1b
to
2e82e8b
Compare
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.
lgtm
a88584b
to
4a17609
Compare
4a17609
to
a1509f4
Compare
@@ -2539,6 +2539,7 @@ fn fn_call_kw(i: &mut TokenSlice) -> PResult<Node<CallExpressionKw>> { | |||
let initial_unlabeled_arg = opt((expression, comma, opt(whitespace)).map(|(arg, _, _)| arg)).parse_next(i)?; | |||
let args = labeled_arguments(i)?; | |||
ignore_whitespace(i); | |||
opt(comma_sep).parse_next(i)?; |
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.
❤️
a1509f4
to
3e10246
Compare
Part of #4600