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

Bug 363097

Summary: Exception on dictionary function getKeys
Product: z_Archived Reporter: broy2
Component: EDTAssignee: Project Inbox <edt.javascriptgen-inbox>
Status: CLOSED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description broy2 CLA 2011-11-07 15:19:55 EST
Use EUNIT to run:

library dictionaryFunctions
    myDictionary Dictionary = new dictionary(true,
                    OrderingKind.byInsertion){ID = 5, lastName = "Twain", firstName = "Mark"};
    keys string[];
    values any[];
    myInt int;
    function getKeys(){@Test}
        keys = myDictionary.getKeys();
        myInt = keys.getSize();
        LogResult.assertBigIntEqual1(3, myInt);
    end
end

getKeys: ERROR - uncaught exception for: dictionaryFunctions::getKeys
Comment 1 broy2 CLA 2011-11-21 17:13:37 EST
Fixed in 20111121 build.
Comment 2 broy2 CLA 2011-11-21 17:13:49 EST
Verified.