Allow dependencies between pages on the wiki #43
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.
This was a feature I strongly resisted adding in the Mediawiki days, but I think the greatly simplified TwelfTag system we've got going makes it quite a bit more doable.
Also adds type-safety-for-the-stlc as a test of the feature. That file has the header
which causes all the Twelf code to be checked as if the contents of simply-typed-lambda-calculus.elf was included before the file. This has
#import
semantics from Objective-C, or#include
C preprocessor semantics where IFDEF is used correctly: multiple dependencies are allowed all transitive dependencies are included, but only once. This would allow there to be one file that contains natural numbers with no imports, a second file that decribes less-thanand a third file that describes addition
then, a fourth file could have the following imports
and
nat.elf
import is optional, because it will be included as a transitive dependencynat
which is only defined once, innat.elf
.