本文整理汇总了TypeScript中@core/util/path.path_getDir函数的典型用法代码示例。如果您正苦于以下问题:TypeScript path_getDir函数的具体用法?TypeScript path_getDir怎么用?TypeScript path_getDir使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了path_getDir函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
constructor: function(path, parent) {
this.path = path;
this.parent = parent;
this.exports = {};
this.location = path_getDir(path);
this.complete_ = this.complete_.bind(this);
},
示例2: u_resolveLocation
export function u_resolveLocation (ctx, ctr?, module?) {
if (module != null) {
return module.location;
}
while(ctr != null) {
if (ctr.location != null) {
return ctr.location;
}
if (ctr.resource != null && ctr.resource.location) {
return ctr.resource.location;
}
ctr = ctr.parent;
}
var path = null;
if (ctx != null) {
if (ctx.filename != null) {
path = path_getDir(path_normalize(ctx.filename));
}
if (ctx.dirname != null) {
path = path_normalize(ctx.dirname + '/');
}
}
if (path == null) {
return path_resolveCurrent();
}
if (path_isRelative(path) === false) {
return path;
}
return path_combine(u_resolveBase(), path);
};
示例3: u_resolveNpmPath
u_resolveNpmPath(this.type, this.path, this.parent.location, function(err, path){
if (err != null) {
self.onLoadError_(err);
return;
}
self.location = path_getDir(path);
self.path = path;
self.doLoad();
});
示例4: walk
function walk(ast, path, opts, done) {
var location = path_getDir(path);
var dependency = {
mask: [],
data: [],
style: [],
script: [],
};
mask_TreeWalker.walkAsync(ast, visit, complete);
function visit (node, next){
if (node.tagName !== 'import') {
return next();
}
var path = resolvePath(node, location);
var type = type_get(node);
if (opts.deep === false) {
dependency[type].push(path);
return next();
}
if ('mask' === type) {
getMask(path, opts, function(error, dep){
if (error) {
return done(error);
}
dependency.mask.push(dep);
next();
});
return;
}
dependency[type].push(path);
next();
}
function complete() {
done(null, dependency);
}
}