本文整理汇总了TypeScript中@core/util/reporters.error_withCompo函数的典型用法代码示例。如果您正苦于以下问题:TypeScript error_withCompo函数的具体用法?TypeScript error_withCompo怎么用?TypeScript error_withCompo使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了error_withCompo函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: _modelArgsBinding
function _modelArgsBinding(args: any[], expr, model, ctx, ctr) {
var arr = null;
if (expr == null) {
var i = args.length;
arr = new Array(i);
while (--i > -1) {
arr[i] = expression_eval(args[i].name, model, ctx, ctr);
}
} else {
arr = expression_evalStatements(expr, model, ctx, ctr);
}
var out = {},
arrMax = arr.length,
argsMax = args.length,
i = -1;
while (++i < arrMax && i < argsMax) {
var val = arr[i];
if (val == null) {
var type = args[i].type;
if (type != null) {
var Type = type;
if (typeof type === 'string') {
Type = expression_eval(type, model, ctx, ctr);
if (Type == null) {
error_withCompo(type + ' was not resolved', ctr);
} else {
val = Di.resolve(Type);
}
}
}
}
out[args[i].name] = val;
}
return out;
}
开发者ID:atmajs,项目名称:MaskJS,代码行数:35,代码来源:compo_meta.ts
示例2: function
expression_getHost = function (accessor, model, ctx, ctr) {
var result = get(accessor, model, ctx, ctr);
if (result == null || result[0] == null) {
error_withCompo('Observable host is undefined or is not allowed: ' + accessor.toString(), ctr);
return null;
}
return result;
};
开发者ID:atmajs,项目名称:MaskJS,代码行数:8,代码来源:expression.ts
示例3: call
on: function call (expr, model, ctr, cb) {
var arr = expression_evalStatements(expr, model, null, ctr);
var stream = arr.shift();
if (stream == null || stream.subscribe == null) {
error_withCompo('Subscribe method is undefined on RxObservable', ctr);
return;
}
arr.push(cb);
this.stream = stream.subscribe.apply(stream, arr);
},
开发者ID:atmajs,项目名称:MaskJS,代码行数:11,代码来源:RxBinder.ts
示例4: onError
function onError(error) {
compo_errored(compo, error);
error_withCompo(error, compo);
resume();
}
开发者ID:atmajs,项目名称:MaskJS,代码行数:5,代码来源:compo.ts
示例5: error_withCompo
.fail(function(error){
error_withCompo(error, this);
self.nodes = self.module.source;
})
开发者ID:atmajs,项目名称:MaskJS,代码行数:4,代码来源:components.ts
示例6: function
logError_: function(msg){
var str = '\n(Module) ' + (this.parent || {path: 'root'}).path
str += '\n (Import) ' + this.path
str += '\n ' + msg;
error_withCompo(str, this);
}
开发者ID:atmajs,项目名称:MaskJS,代码行数:6,代码来源:Import.ts
注:本文中的@core/util/reporters.error_withCompo函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论