Description
I am taking a new design approach and trying to make the app flexible. Originally, I did not want to have users define method arguments. After getting feedback, I realized that it would be useful to allow arguments, especially for overloading methods.
Acceptance Criteria
For each method, add a new field to add arguments. This field should be optional.
Open question: What format should be used to write the arguments? One field delimited by commas? multiple fields?
Arguments should be placed between the parenthesis in the node.
Additional Information
Each argument should take a type and name. The regex would be /\w+ w+/
Description
I am taking a new design approach and trying to make the app flexible. Originally, I did not want to have users define method arguments. After getting feedback, I realized that it would be useful to allow arguments, especially for overloading methods.
Acceptance Criteria
For each method, add a new field to add arguments. This field should be optional.
Open question: What format should be used to write the arguments? One field delimited by commas? multiple fields?
Arguments should be placed between the parenthesis in the node.
Additional Information
Each argument should take a type and name. The regex would be /\w+ w+/