VS JavaScript intellisense with parameters
here are some javascript examples:
SomeObjectType = function() {
}
SomeObjectType.prototype = {
field1: null,
field2: null
}
SomeOtherObject = function() {
}
SomeOtherObject.prototype =
{
doSomething: function(val) {
/// <param name="val" type="SomeObjectType"></param>
var val2 = new SomeObjectType();
//val2. shows intellisense correctly
//val. does NOT
}
}
If visual studio doesn't give me intelligence when I do "val". inside doSomething function? I would have expected this to give me field1 and field2 as options, but it doesn't. I will get field1 and field2 if I type "val2". so intellisence works when I create a new object of the same type that I specify in the parameter comment.
Any ideas what I am doing wrong or is this just not supported?
0
source to share