| Index: lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate
|
| diff --git a/lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate b/lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate
|
| index f704324d0561c21f3ae195fd7fcb5332ca632b3d..4b3e68f1f103a8ea30203170b336dfaf87d1ef0c 100644
|
| --- a/lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate
|
| +++ b/lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate
|
| @@ -16,20 +16,20 @@ abstract class $ID$EXTENDS {
|
| /**
|
| * @domName IDBKeyRange.lowerBound
|
| */
|
| - factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open]) =>
|
| + factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open = false]) =>
|
| _IDBKeyRangeFactoryProvider.create$(ID)_lowerBound(bound, open);
|
|
|
| /**
|
| * @domName IDBKeyRange.upperBound
|
| */
|
| - factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open]) =>
|
| + factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open = false]) =>
|
| _IDBKeyRangeFactoryProvider.create$(ID)_upperBound(bound, open);
|
|
|
| /**
|
| * @domName IDBKeyRange.bound
|
| */
|
| factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
|
| - [bool lowerOpen, bool upperOpen]) =>
|
| + [bool lowerOpen = false, bool upperOpen = false]) =>
|
| _IDBKeyRangeFactoryProvider.create$(ID)_bound(
|
| lower, upper, lowerOpen, upperOpen);
|
|
|
|
|