-
Notifications
You must be signed in to change notification settings - Fork 0
C# Compiler #3
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
Merged
Merged
C# Compiler #3
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Resolve in the background once resolvables are created to speed up compilation. - Use a lock for accessing requirements & graph. - Fix the GetInsertableLine method in the ModuleSpec, was removing extensions that were never there to start with and breaking module names. - Add a Parents list to the Compiled class to store the parent modules. - Implement the GetRootParent method in the Compiled class to find the root parent module. - Implement the GetSiblings method in the Compiled class to get all sibling modules. - Implement the FindSibling method in the Compiled class to find a sibling module with a specific ModuleSpec.
No longer need the number before the name to have a fixed load order.
* Allow the Input to be of a Directory in which case it will compile all scripts in parallel (No sharing of compiled modules between then yet) * Moduler Analyser rule system with supressions for rules in a scriptblock scope by being applied to the param block.
No longer prints help at the end of every invocation and turns out i dont need to handle the not parsed at all.
Allows easier debugging
Instead of just sending off each compile task then using wait handles to try get the compiled dependencies we now compile in batches of modules that have already had all dependencies completed in previous batches.
This was caused by the job and also assigning the Result variable.
Supresses warnings about pre-release packages for PowerShell & LanguageExt. Additionally supress the warnings related to the Compiler namespace.
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Very early days, not quite in a testable state yet.