-
-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/docs-site-styling
- Loading branch information
Showing
4 changed files
with
38 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
before_install: | ||
- source "$HOME/.sdkman/bin/sdkman-init.sh" | ||
- sdk update | ||
- sdk install java 16.0.1-open | ||
- sdk use java 16.0.1-open |
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
10 changes: 10 additions & 0 deletions
10
src/test/skript/tests/regressions/4143-nested-variables-erroring-in-2.6-beta1.sk
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,10 @@ | ||
on load: | ||
suppress conflict warnings | ||
|
||
test "nested variable parsing": | ||
delete {_a} | ||
delete {_a%{b}%} | ||
delete {_a%{b%{c}%}%} | ||
delete {_a%{b%{c%{d}%}%}%} | ||
delete {_a%{b%{c%{d%{e}%}%}%}%} | ||
delete {_a%{b%{c} + {d}%} + {e%{f} + {g}%}%} |