Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ext/fs): implement InMemoryFs::realpath_sync #24585

Closed
wants to merge 1 commit into from

Conversation

arnauorriols
Copy link
Member

Related: <pending commit in denoland/eszip>

fn realpath_sync(&self, _path: &Path) -> FsResult<PathBuf> {
Err(FsError::NotSupported)
fn realpath_sync(&self, path: &Path) -> FsResult<PathBuf> {
RealFs.realpath_sync(path)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this will work for the in memory file system because it will contain paths not on the real file system?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I'm aware. I'm still testing some stuff across crates. I'll let you know when it's ready

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants