QmlJS: Remove unused methods from Context

Change-Id: I1e4a013ee11f9747d6936c15bf81e971ca4e4f23
Reviewed-on: http://codereview.qt.nokia.com/1040
Reviewed-by: Fawzi Mohamed <fawzi.mohamed@nokia.com>
This commit is contained in:
Christian Kamm
2011-07-01 13:31:06 +02:00
parent 8b778b266b
commit f691d3824a
2 changed files with 0 additions and 15 deletions

View File

@@ -908,17 +908,6 @@ const Value *Context::lookupReference(const Value *value) const
return v;
}
const Value *Context::property(const ObjectValue *object, const QString &name) const
{
const Properties properties = _properties.value(object);
return properties.value(name, valueOwner()->undefinedValue());
}
void Context::setProperty(const ObjectValue *object, const QString &name, const Value *value)
{
_properties[object].insert(name, value);
}
QString Context::defaultPropertyName(const ObjectValue *object) const
{
PrototypeIterator iter(object, this);