ti-debug
Version:
Server-side components for WebKit Remote Debugging
32 lines (26 loc) • 629 B
JavaScript
function Profiler() {
}
Profiler.prototype.enable = function (params, callback) {
callback(null);
};
Profiler.prototype.causesRecompilation = function (params, callback) {
callback({
result : false
});
};
Profiler.prototype.supportsSeparateScriptCompilationAndExecution = function (params, callback) {
callback({
result : false
});
};
Profiler.prototype.isSampling = function (params, callback) {
callback({
result : false
});
};
Profiler.prototype.hasHeapProfiler = function (params, callback) {
callback({
result : true
});
};
module.exports = Profiler;