--- old/src/jdk/nashorn/internal/objects/NativeRegExpExecResult.java 2014-03-17 14:05:48.992451142 +0530 +++ new/src/jdk/nashorn/internal/objects/NativeRegExpExecResult.java 2014-03-17 14:05:48.808450225 +0530 @@ -53,12 +53,8 @@ // initialized by nasgen private static PropertyMap $nasgenmap$; - static PropertyMap getInitialMap() { - return $nasgenmap$; - } - NativeRegExpExecResult(final RegExpResult result, final Global global) { - super(global.getArrayPrototype(), getInitialMap()); + super(global.getArrayPrototype(), $nasgenmap$); setIsArray(); this.setArray(ArrayData.allocate(result.getGroups().clone())); this.index = result.getIndex();