Index: sky/framework/inspector/runtime-agent.sky |
diff --git a/sky/framework/inspector/runtime-agent.sky b/sky/framework/inspector/runtime-agent.sky |
index 4bac0ba4df69a0200300dd887433cf6fc2a25872..c0857915715ac013e0697da64bc0c94b2eabe129 100644 |
--- a/sky/framework/inspector/runtime-agent.sky |
+++ b/sky/framework/inspector/runtime-agent.sky |
@@ -115,7 +115,10 @@ Runtime.prototype.evaluate = function(params) { |
return makeResult(params, value, wasThrown); |
} |
-Runtime.prototype.getProperties = debug.loggingStub("getProperties"); |
+Runtime.prototype.getProperties = function(params) { |
+ // FIXME: Unclear what this is for. |
+ return []; |
+} |
module.exports = Runtime; |
</script> |