Resharper 6 JS IntelliSense Doc-Comments Support
There is a free extension, JScript Editor, that allow for IntelliSense Doc-Comments for js functions. It allows for <summary> <param> etc. Just the new R#6 support this? If so, how do we enable/use it?
/// <summary>my function summary
/// <para>Some info on a new line</para>
/// </summary>
/// <param name="bar" type="String">a string</param>
function foo(bar) {
// do something
}
Please sign in to leave a comment.
Hello,
ReSharper 6 should pop-up the code completion list after '///<' in JavaScript
automatically. If you're not observing this behavior, please attach screenshots
of ReSharper | Options | IntelliSense | General and Completion Behavior tabs.
Thank you!
Andrey Serebryansky
Senior Support Engineer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"
Andrey,
I am not the original poster, but this doc comments support is working for me. What I can't get ReSharper to understand is that a particular function is actually a constructor, so that ReSharper stops bugging me about renaming the constructor from SomeClass to someClass. Any ideas?