diff --git a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp index 9505dbaf654..398c048295c 100644 --- a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp +++ b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp @@ -509,6 +509,10 @@ void QmlV8DebuggerClient::setLocals(int frameIndex) WatchData data; data.exp = local.findChild("name").toVariant().toByteArray(); + //Check for v8 specific local + if (data.exp.startsWith(".")) + continue; + data.name = data.exp; data.iname = "local." + data.exp; JsonValue val = refs.childAt(indexInRef(refs,local.findChild("value").findChild("ref").toVariant().toInt()));