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

Key: IDEADEV-15822
Type: New Feature New Feature
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

User should get highlighting notification if parameter count in function usage is defferent from function definition

Created: 10 Jan 07 15:01   Updated: 20 Sep 07 19:39
Component/s: JavaScript
Fix Version/s: Diana Final

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown
File Attachments: None
Image Attachments:

1. screenshot-1.jpg
(203 kb)

Build: 6,632


 All   Comments   Work Log   Change History      Sort Order:
Mikhail Gedzberg - 10 Jan 07 15:02
function Browser(name, version, company) {
this.name = name;
this.version = version;
this.company = company;
}

var myBrowser = new Browser("IE", "6.0");