Lines Matching refs:new_path
71 … nil, path_abs = nil, basedir_abs = nil, parts = nil, leading_sep = nil, abs = nil, new_path = nil;
117 new_path = new_parts.$join(sep);
119 new_path = $rb_plus(leading_sep, new_path)
121 return new_path;
472 $defs(self, '$symlink', function $$symlink(path, new_path) { argument
475 executeIOAction(function(){return __fs__.symlinkSync(path, new_path)});
1328 var self = this, new_path = nil;
1331 new_path = self.path.$sub(/\/([^\/]+\/?$)/, "");
1332 if ($eqeq(new_path, "")) {
1333 new_path = ($truthy(self['$absolute?']()) ? ("/") : ("."))
1335 return $$('Pathname').$new(new_path);