Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 453319

Summary: [quickfix] Provide a fix for sparse arrays
Product: [ECD] Orion Reporter: Michael Rennie <Michael_Rennie>
Component: JS ToolsAssignee: Michael Rennie <Michael_Rennie>
Status: RESOLVED FIXED QA Contact:
Severity: enhancement    
Priority: P3    
Version: 7.0   
Target Milestone: 8.0   
Hardware: All   
OS: All   
Whiteboard:

Description Michael Rennie CLA 2014-11-26 09:57:43 EST
Given a sparse array like:

var a = [1, , 2, , , 3, , ]

the fix would convert it to:

var a = [1, 2, 3]