Index: Source/bindings/v8/Dictionary.cpp |
diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp |
index b95bed22a1af87e58838c60a18e4f655ee8e05bc..a25d7fa21a87d50d4ecf1f6bf8e2004379ef38c6 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; |