HoriSun / closure-compiler

Automatically exported from code.google.com/p/closure-compiler
0 stars 0 forks source link

indexeddb externs file update #850

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

In
http://closure-compiler.googlecode.com/svn/trunk/externs/w3c_indexeddb.js

/**
 * @type {Array.<string>}
 * @const
 */
IDBObjectStore.prototype.indexNames;

What is the expected output? What do you see instead?

/**
 * @type {DOMStringList}
 * @const
 */
IDBObjectStore.prototype.indexNames;

/**
 * @param {*} key The key of this value.
 * @return {!IDBRequest} The IDBRequest object.
 */
IDBObjectStore.prototype.count = function(key) {};

What version of the product are you using? On what operating system?

r2283

Please provide any additional information below.

http://www.w3.org/TR/IndexedDB/#object-store

Original issue reported on code.google.com by kyaw...@yathit.com on 2 Nov 2012 at 4:22

GoogleCodeExporter commented 9 years ago
Update:

/**
 * @param {*=} key Key identifying the record to be retrieved.
 * @return {!IDBRequest} The IDBRequest object.
 */
IDBObjectStore.prototype.count = function(key) {};

Original comment by kyaw...@yathit.com on 2 Nov 2012 at 4:31

GoogleCodeExporter commented 9 years ago
This issue was closed by r2302.

Original comment by chadkill...@missouristate.edu on 7 Nov 2012 at 7:17