bahmutov / bahmutov/comment-value
Handle block comments
Open
enhancement
- Dominant language
- JavaScript
- Stars
- 27
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
Longer values require multi-line print, so we need to handle the block comments
For example
```js
const v = {foo: {bar: 'baz'}}
/* v: */
```
should expand into
```js
const v = {foo: {bar: 'baz'}}
/* v: {
foo: {
bar: 'baz'
}
}
*/
```
Contributor guide
No contributing guide indexed for this repository
Research direction
No file or test is named in the issue. Start by reproducing the JavaScript example and locating the instrumentation entry point that handles the existing /* v: */ form; done means a nested object is expanded into the requested multi-line block comment without breaking the surrounding source.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript, nodejs
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 55/100