Code Explorer and vbscript class Property Get code blocks [61077]

2013-08-14 Tema obsahu Milton
It seems PSPad does not recognise the "Property Get" construct in a class construct. -- PSPad freeware editor http://www.pspad.com

Re: Code explorer for JavaScript does not recognize functions: name = fun= ction() { } [61076]

2013-08-14 Tema obsahu Stevie
@Jan: This feature improves working with JavaScript a lot. Please also add support for recognizing methods in prototypes defined as follows: new Human = function() { this.walking = false; this.name = ""; this.height = 1.80; }; Human.prototype.walk = function() { this.walking = true; };