Undo manual edit to avoid shadowing warning

BUG=
TEST=

Review URL: http://codereview.chromium.org//9123026

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@3276 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
sra@google.com 2012-01-13 02:30:32 +00:00
parent 83663d98f4
commit 140a916227
3 changed files with 14 additions and 14 deletions

View file

@ -41,11 +41,11 @@ class _IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKe
static IDBKeyRange _bound_2(receiver, lower, upper, lowerOpen) native;
static IDBKeyRange _bound_3(receiver, lower, upper, lowerOpen, upperOpen) native;
IDBKeyRange lowerBound(IDBKey bound_, [bool open = null]) {
IDBKeyRange lowerBound(IDBKey bound, [bool open = null]) {
if (open === null) {
return _lowerBound(this, bound_);
return _lowerBound(this, bound);
} else {
return _lowerBound_2(this, bound_, open);
return _lowerBound_2(this, bound, open);
}
}
static IDBKeyRange _lowerBound(receiver, bound) native;
@ -56,11 +56,11 @@ class _IDBKeyRangeWrappingImplementation extends DOMWrapperBase implements IDBKe
}
static IDBKeyRange _only(receiver, value) native;
IDBKeyRange upperBound(IDBKey bound_, [bool open = null]) {
IDBKeyRange upperBound(IDBKey bound, [bool open = null]) {
if (open === null) {
return _upperBound(this, bound_);
return _upperBound(this, bound);
} else {
return _upperBound_2(this, bound_, open);
return _upperBound_2(this, bound, open);
}
}
static IDBKeyRange _upperBound(receiver, bound) native;

View file

@ -56,8 +56,8 @@ class _InjectedScriptHostWrappingImplementation extends DOMWrapperBase implement
}
static void _inspect(receiver, objectId, hints) native;
Object inspectedNode(int num_) {
return _inspectedNode(this, num_);
Object inspectedNode(int num) {
return _inspectedNode(this, num);
}
static Object _inspectedNode(receiver, num) native;

View file

@ -20,8 +20,8 @@ class _StorageWrappingImplementation extends DOMWrapperBase implements Storage {
}
static void _clear(receiver) native;
String getItem(String key_) {
return _getItem(this, key_);
String getItem(String key) {
return _getItem(this, key);
}
static String _getItem(receiver, key) native;
@ -30,14 +30,14 @@ class _StorageWrappingImplementation extends DOMWrapperBase implements Storage {
}
static String _key(receiver, index) native;
void removeItem(String key_) {
_removeItem(this, key_);
void removeItem(String key) {
_removeItem(this, key);
return;
}
static void _removeItem(receiver, key) native;
void setItem(String key_, String data) {
_setItem(this, key_, data);
void setItem(String key, String data) {
_setItem(this, key, data);
return;
}
static void _setItem(receiver, key, data) native;