-
Notifications
You must be signed in to change notification settings - Fork 45
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
Update function call expr source gen and fix few issues related to function call exprs #486
Update function call expr source gen and fix few issues related to function call exprs #486
Conversation
@@ -19,7 +19,7 @@ | |||
"items": [ | |||
{ | |||
"metadata": { | |||
"label": "post:[/path/to/resource]", | |||
"label": "post:/path/to/subdirectory", |
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.
subdirectory ?
}); | ||
} | ||
case PATH_REST_PARAM -> pathBuilder.append("[").append("/path/to/resource").append("]"); | ||
case PATH_REST_PARAM -> pathBuilder.append("/path/to/subdirectory"); |
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.
why subdirectory ?
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.
resource is an escaped keyword. In url conventions they call it sub directory
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.
OK. That makes sense.
Purpose
$subject