-
Notifications
You must be signed in to change notification settings - Fork 15
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
#992: added design doc for script options #477
Conversation
3522853
to
0a2684d
Compare
b6dca79
to
207e27f
Compare
### Java %jar Option Collection | ||
`dsn~java-jar-option-collection~1` | ||
|
||
Implement an algorithm in class `ConverterV2` to split the given Jar option value by colon (':') and then collect the found Jar options in a list. |
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.
Add our links about what are legal classpaths
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.
The link is already mentioned in the covered requirement: req~java-jar-option-handling-multiple-options~1
.
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.
someone might not read the requirement and only the design
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.
Added the link
…doc_for_script_options
Co-authored-by: Torsten Kilias <[email protected]>
… ->`Java %scriptclass Option Handling`
…t_options' into doc/992_add_design_doc_for_script_options
@@ -161,7 +178,7 @@ The following diagram shows how the scripts are collected in the recursive algor | |||
|
|||
### Parser Implementation V1 | |||
|
|||
The legacy parser (V1) parser searches for one specific script option. The parser starts from beginning of the script code. If found, the parser immediately removes the script option from the script code and returns the option value. It validates the | |||
The legacy parser (V1) parser searches for one specific script option. The parser starts from the beginning of the script code. If found, the parser immediately removes the script option from the script code and returns the option value. It validates the |
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.
It validates the
Incomplete sentence
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.
Removed
…doc_for_script_options
Fix from review Co-authored-by: Torsten Kilias <[email protected]>
related to exasol/script-languages-release#992