Use POSIX paths on Windows systems #1470
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Context
While the above behaviour is useful when it comes to manipulating files on the host operating system (OS)'s filesystem, we want the preprocessor to make use of POSIX file paths because BrowserFS in the frontend is a POSIX filesystem.
Note that it is technically not wrong to make use of Windows file paths in the preprocessor, but this would introduce additional complexity into the tests (because they would need to handle file paths in both systems) as well as other parts of the preprocessor (because the Windows drive letter contains characters which are not valid JavaScript names). In fact, if js-slang were to support running multiple-file programs on the host OS in the future, this behaviour might even be necessary. However until that is the case, we should apply the YAGNI principle to keep things simple.
Changes
pathmethods regardless of OS by importing fromnode:path/posixHow to Test
There should be no change in behaviour on POSIX OSes. I will need someone using Windows to verify that the preprocessor tests all pass.