Index: Source/bindings/v8/Dictionary.cpp |
diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp |
index a67c1f341b51a4fd9ccbfc7e1f7ff3e59a47546f..dfc75a267d612d92d6931162e1dd7e1c9fb6f244 100644 |
--- a/Source/bindings/v8/Dictionary.cpp |
+++ b/Source/bindings/v8/Dictionary.cpp |
@@ -110,6 +110,11 @@ bool Dictionary::getKey(const String& key, v8::Local<v8::Value>& value) const |
return true; |
} |
+bool Dictionary::get(const String& key, v8::Local<v8::Value>& value) const |
+{ |
+ return getKey(key, value); |
+} |
+ |
bool Dictionary::get(const String& key, bool& value) const |
{ |
v8::Local<v8::Value> v8Value; |