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

Unified Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart

Issue 1583773003: Support JS$ prefix for dart and fix bug where _operator_getter and the [] operator were used incons… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: remove tests to put with matching dart2js tests Created 4 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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/html_common/conversions_dartium.dart ('k') | sdk/lib/js/dartium/js_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
diff --git a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
index 4ab3e302ca12281343676ee24b4d4b9992405912..36b35e38f2963e64a15145550ede0e7bd1b62cea 100644
--- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
+++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
@@ -247,9 +247,7 @@ class CursorWithValue extends Cursor {
return new CursorWithValue._internalWrap();
}
- factory CursorWithValue._internalWrap() {
- return new CursorWithValue.internal_();
- }
+ external factory CursorWithValue._internalWrap();
@Deprecated("Internal Use Only")
CursorWithValue.internal_() : super.internal_();
@@ -365,9 +363,7 @@ class Database extends EventTarget {
return new Database._internalWrap();
}
- factory Database._internalWrap() {
- return new Database.internal_();
- }
+ external factory Database._internalWrap();
@Deprecated("Internal Use Only")
Database.internal_() : super.internal_();
@@ -1126,9 +1122,7 @@ class OpenDBRequest extends Request {
return new OpenDBRequest._internalWrap();
}
- factory OpenDBRequest._internalWrap() {
- return new OpenDBRequest.internal_();
- }
+ external factory OpenDBRequest._internalWrap();
@Deprecated("Internal Use Only")
OpenDBRequest.internal_() : super.internal_();
@@ -1185,9 +1179,7 @@ class Request extends EventTarget {
return new Request._internalWrap();
}
- factory Request._internalWrap() {
- return new Request.internal_();
- }
+ external factory Request._internalWrap();
@Deprecated("Internal Use Only")
Request.internal_() : super.internal_();
@@ -1300,9 +1292,7 @@ class Transaction extends EventTarget {
return new Transaction._internalWrap();
}
- factory Transaction._internalWrap() {
- return new Transaction.internal_();
- }
+ external factory Transaction._internalWrap();
@Deprecated("Internal Use Only")
Transaction.internal_() : super.internal_();
@@ -1364,9 +1354,7 @@ class VersionChangeEvent extends Event {
return new VersionChangeEvent._internalWrap();
}
- factory VersionChangeEvent._internalWrap() {
- return new VersionChangeEvent.internal_();
- }
+ external factory VersionChangeEvent._internalWrap();
@Deprecated("Internal Use Only")
VersionChangeEvent.internal_() : super.internal_();
« no previous file with comments | « sdk/lib/html/html_common/conversions_dartium.dart ('k') | sdk/lib/js/dartium/js_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698