-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix transclude inefficiency #7647
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c4fc316
Refactor parse mode out of getTransclusionTarget
Jermolene 2c58a0a
Refactor missing transclusion target
Jermolene 7e86cdf
Add a test to avoid regressions on the handling of macros vs procedures
Jermolene fd95a94
Refactor condition logic
Jermolene 091cc3c
Preparing to split getTransclusionTarget into two separate functions
Jermolene fa5bae0
Split getTransclusionTarget into getTransclusionTargetIncludingParseT…
Jermolene 99232c3
Resolve another inefficiency
Jermolene 4a39097
Simplify method naming
Jermolene 81679b8
Neatening up
Jermolene File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
26 changes: 26 additions & 0 deletions
26
editions/test/tiddlers/tests/data/transclude/Procedures-Double-Underscore.tid
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
title: Procedures/Double/Underscore | ||
description: Checking that procedures don't expose parameters as variables wrapped in double underscores | ||
type: text/vnd.tiddlywiki-multiple | ||
tags: [[$:/tags/wiki-test-spec]] | ||
|
||
title: Output | ||
|
||
\whitespace trim | ||
\procedure mamacro(one:"red",two:"green") | ||
It is $one$ and $two$<<__one__>><<__two__>>. | ||
\end | ||
|
||
<$macrocall $name="mamacro"/> | ||
|
||
<$transclude $variable="mamacro"/> | ||
|
||
<$transclude $variable="mamacro" one="orange"/> | ||
|
||
<$transclude $variable="mamacro" 0="pink"/> | ||
|
||
<$transclude $variable="mamacro" one="purple" 1="pink"/> | ||
|
||
+ | ||
title: ExpectedResult | ||
|
||
<p>It is $one$ and $two$.</p><p>It is $one$ and $two$.</p><p>It is $one$ and $two$.</p><p>It is $one$ and $two$.</p><p>It is $one$ and $two$.</p> |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems
this.parseAsInline
is only initialized if this case has been executed. Is that intentional? IMO undefined means "we do not know". The variableparseAsInline
is defined as true or false. Just a gut feeling.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The code relies on this.parseAsInline defaulting to false