| Current Path : /home2/wtmwscom/public_html/post/scripts/ |
| Current File : /home2/wtmwscom/public_html/post/scripts/NullDebugger.js |
define('OutSystems/ClientRuntime/RuntimeDebuggerAPI',["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var BreakpointType;
(function (BreakpointType) {
BreakpointType[BreakpointType["Normal"] = 0] = "Normal";
BreakpointType[BreakpointType["AtFunctionReturn"] = 1] = "AtFunctionReturn";
BreakpointType[BreakpointType["BetweenAssignments"] = 2] = "BetweenAssignments";
})(BreakpointType = exports.BreakpointType || (exports.BreakpointType = {}));
});
// All licensing information regarding this source code can be found in the LICENSES.txt file.
//# sourceMappingURL=NullDebugger.js.map?ts=1575554012655
define('OutSystems/ClientRuntime/NullDebugger',["require", "exports", "./RuntimeDebuggerAPI"], function (require, exports, RuntimeDebuggerAPI_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var NullDebugger = (function () {
function NullDebugger() {
}
NullDebugger.prototype.startSession = function () { };
NullDebugger.prototype.endSession = function () { };
NullDebugger.prototype.getThreadStack = function (callContextId) { return null; };
NullDebugger.prototype.addBreakpoint = function (breakpointId) { };
NullDebugger.prototype.addBreakpoints = function (breakpointIds) { };
NullDebugger.prototype.allowBreakpointsFromModule = function (key) { };
NullDebugger.prototype.removeBreakpoint = function (breakpointId) { };
NullDebugger.prototype.clearBreakpoints = function () { };
NullDebugger.prototype.continue = function (callContextId) { };
NullDebugger.prototype.continueToHere = function (breakpointId, callContextId) { };
NullDebugger.prototype.stepInto = function (callContextId) { };
NullDebugger.prototype.stepOver = function (callContextId) { };
NullDebugger.prototype.stepOut = function (callContextId) { };
NullDebugger.prototype.pauseOnAllExceptions = function (isEnabled) { };
NullDebugger.prototype.evaluateVariable = function (callContextId, stackLevel, actionKey, variableKey, path, depth) { return null; };
Object.defineProperty(NullDebugger.prototype, "version", {
get: function () { return 0; },
enumerable: true,
configurable: true
});
NullDebugger.prototype.isPausedOnException = function () { return false; };
NullDebugger.prototype.getExceptionMessage = function (callContextId) { return null; };
NullDebugger.prototype.getThreadStartName = function (callContextId) { return null; };
NullDebugger.prototype.initialize = function (waitForClient) { return Promise.resolve(); };
NullDebugger.prototype.registerMetaInfo = function (variablesMapping) { };
NullDebugger.prototype.getRequestHeaders = function (callContextId) { return null; };
NullDebugger.prototype.processResponseHeaders = function (callContextId, headers) { };
NullDebugger.prototype.setThreadStartName = function (callContextId, threadStartName) { };
NullDebugger.prototype.push = function (breakpointIdStr, moduleName, elementName, elementType, callContextId, varBag) { };
NullDebugger.prototype.pop = function (breakpointIdStr, callContextId) { };
NullDebugger.prototype.handleFunctionCall = function (functionCaller, resultType, callContextId) { return functionCaller(); };
NullDebugger.prototype.handleBreakpoint = function (breakpointIdStr, callContextId, breakpointType, extraInfo) {
var dummy = RuntimeDebuggerAPI_1.BreakpointType.Normal;
return true;
};
NullDebugger.prototype.handleException = function (error, callContextId) { };
NullDebugger.prototype.parse = function (breakpointIdStr) { return null; };
Object.defineProperty(NullDebugger.prototype, "BreakpointType", {
get: function () { return RuntimeDebuggerAPI_1.BreakpointType; },
enumerable: true,
configurable: true
});
return NullDebugger;
}());
exports.NullDebugger = NullDebugger;
exports.Version = "1.0.0";
var globalObj = typeof window !== "undefined" ? window : global;
globalObj.OutSystemsDebugger = new NullDebugger();
});
//# sourceMappingURL=NullDebugger.js.map;