kopia lustrzana https://github.com/c9/core
fix display of null type in the debugger
rodzic
b6325419f3
commit
48150318d4
|
@ -315,11 +315,9 @@ define(function(require, exports, module) {
|
||||||
function createVariable(options, name, scope, variable) {
|
function createVariable(options, name, scope, variable) {
|
||||||
var value = options.value || options;
|
var value = options.value || options;
|
||||||
|
|
||||||
if (variable) {
|
if (!variable) {
|
||||||
// variable.value = formatType(options);
|
if (value.subtype == "null")
|
||||||
// variable.type = options.type;
|
value.type = value.subtype;
|
||||||
}
|
|
||||||
else {
|
|
||||||
variable = new Variable({
|
variable = new Variable({
|
||||||
name: name || options.name,
|
name: name || options.name,
|
||||||
scope: scope,
|
scope: scope,
|
||||||
|
@ -331,28 +329,6 @@ define(function(require, exports, module) {
|
||||||
options: options,
|
options: options,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// if (value.prototypeObject)
|
|
||||||
// variable.prototype = new Variable({
|
|
||||||
// tagName: "prototype",
|
|
||||||
// name: "prototype",
|
|
||||||
// type: "object",
|
|
||||||
// ref: value.prototypeObject.ref
|
|
||||||
// });
|
|
||||||
// if (value.protoObject)
|
|
||||||
// variable.proto = new Variable({
|
|
||||||
// tagName: "proto",
|
|
||||||
// name: "proto",
|
|
||||||
// type: "object",
|
|
||||||
// ref: value.protoObject.ref
|
|
||||||
// });
|
|
||||||
// if (value.constructorFunction)
|
|
||||||
// variable.constructorFunction = new Variable({
|
|
||||||
// tagName: "constructor",
|
|
||||||
// name: "constructor",
|
|
||||||
// type: "function",
|
|
||||||
// ref: value.constructorFunction.ref
|
|
||||||
// });
|
|
||||||
return variable;
|
return variable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue