History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-13098
Type: Bug Bug
Status: Open Open
Priority: Normal Normal
Assignee: Maxim Mossienko
Reporter: Mikhail Gedzberg
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

Predefined type prototype is permitted for assignment

Created: 10 Jan 07 13:48   Updated: 26 Sep 07 19:33
Component/s: JavaScript
Fix Version/s: Diana Final

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 6,632


 Description  « Hide
Prototype of predefine types are READ-ONLY.

Example:

function Browser(name, version) {
this.name = name;
this.version = version;
this.aboutBrowser = function() { document.write("Обозреватель: " + this.name + " " + this.version); }
}

Number.prototype = Browser.prototype;
String..prototype = Browser.prototype;



 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.