Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Unified Diff: client/dom/generated/wrapping_dom.js

Issue 9122019: Avoid generating "foo.continue()" because JSCompiler chokes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « no previous file | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/wrapping_dom.js
diff --git a/client/dom/generated/wrapping_dom.js b/client/dom/generated/wrapping_dom.js
index 547b6583d5f8c57c60d9b4af5cfa6b5ee4510c30..d0feb2afecae6673ab1104543d61c5c0172c25ce 100644
--- a/client/dom/generated/wrapping_dom.js
+++ b/client/dom/generated/wrapping_dom.js
@@ -16112,7 +16112,7 @@ function native__IDBCursorWrappingImplementation__get_source(_this) {
function native__IDBCursorWrappingImplementation__continueFunction(_this) {
try {
- return __dom_wrap(_this.$dom.continue());
+ return __dom_wrap(_this.$dom['continue']());
} catch (e) {
throw __dom_wrap_exception(e);
}
@@ -16120,7 +16120,7 @@ function native__IDBCursorWrappingImplementation__continueFunction(_this) {
function native__IDBCursorWrappingImplementation__continueFunction_2(_this, key) {
try {
- return __dom_wrap(_this.$dom.continue(__dom_unwrap(key)));
+ return __dom_wrap(_this.$dom['continue'](__dom_unwrap(key)));
} catch (e) {
throw __dom_wrap_exception(e);
}
@@ -16128,7 +16128,7 @@ function native__IDBCursorWrappingImplementation__continueFunction_2(_this, key)
function native__IDBCursorWrappingImplementation__delete(_this) {
try {
- return __dom_wrap(_this.$dom.delete());
+ return __dom_wrap(_this.$dom['delete']());
} catch (e) {
throw __dom_wrap_exception(e);
}
@@ -16680,7 +16680,7 @@ function native__IDBObjectStoreWrappingImplementation__createIndex(_this, name,
function native__IDBObjectStoreWrappingImplementation__delete(_this, key) {
try {
- return __dom_wrap(_this.$dom.delete(__dom_unwrap(key)));
+ return __dom_wrap(_this.$dom['delete'](__dom_unwrap(key)));
} catch (e) {
throw __dom_wrap_exception(e);
}
« no previous file with comments | « no previous file | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698