feat: 格式化代码 添加d.ts文件 去除引擎无关代码 清理单元测试

This commit is contained in:
2018-05-17 18:30:40 +08:00
parent 967e7d1beb
commit 88d71abb2a
44 changed files with 494 additions and 565 deletions

View File

@ -12,6 +12,7 @@
}.bind(this),
set: function (name) {
this._name = name ? '[' + name + '] ' : '';
// noinspection JSUnusedGlobalSymbols
this.prefix = name ? '§6[§cMS§6][§b' + name + '§6]§r ' : '§6[§bMiaoScript§6]§r ';
}.bind(this)
});
@ -19,6 +20,7 @@
this.log = this.info = function () {
log.info(this.name + Array.prototype.join.call(arguments, ' '));
};
// noinspection JSUnusedGlobalSymbols
this.warn = function () {
log.warning(this.name + Array.prototype.join.call(arguments, ' '));
};
@ -35,7 +37,7 @@
for (var i in obj) {
this.log(i, '=>', obj[i])
}
}
};
this.ex = function (message, ex) {
if (!ex) {
this.console('§4' + message);
@ -55,6 +57,6 @@
}
}.bind(this));
};
}
};
global.Console = ConsoleDefault;
})(global);