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.
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
GH 731 - review #362
GH 731 - review #362
Changes from 24 commits
cedb1b3
32dd2cb
690b099
0d7427b
22e607b
b9a6e85
08349e2
8aead2a
6167856
7286ee8
fce6fe1
4dd0932
413ffc5
18d0cc1
efd3fbb
cf6da59
34b8fea
5895879
62e99e3
8369ff9
5b02822
0603f70
2ec7e12
fe491ab
53feaac
71ad41e
fcd1c0d
0c8a866
3a46f00
8205800
151ab18
dd290ea
08930b9
15e66e6
1391842
6973082
9ad7413
ccdb0ad
d50c740
2606ebd
553ac0b
a3bce20
e7fdf8e
e5b8a6e
09f84ce
1877513
29a1c3d
4bae1dd
4a75406
ee900f9
3b829b7
cb58d97
7110f4f
9fb3296
177cc88
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Isn't there a utility function with a long name that you could use in place of this? Something like
vec_of_slices_to_vec_of_strings()
or something?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 think this
match
at the beginning could be replaced with a.map()
at the end. Also, this sequence of code that you write once forexisting_value
and once fornon_existing_value
could probably be made into a local function or closure and called twice. If locating aVclArg
inside aVirtualCommandLine
by name turns out to be useful enough, it could turn into a local utility function that other tests could use.