-
-
Notifications
You must be signed in to change notification settings - Fork 27
Registration API Compatibility #130
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
Changes from 44 commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
aa9422a
Add tests for import structure and effect
Pikachu920 0eea331
Try to fix EffImport in test mode
Pikachu920 56caf03
See if JavaType classinfo parser is working
Pikachu920 f900a67
See if JavaType classinfo parser is working
Pikachu920 b29abfd
Strip out ImportHandler
Pikachu920 1cf909f
Strip out more usages of ImportHandler
Pikachu920 6ccbdcb
Fix function argument type error in EffImport.sk
Pikachu920 b1f09ed
Attempt to fix EffImport.sk test
Pikachu920 c3532f5
Add custom expression tests
Pikachu920 ea072b8
Organize existing tests into folders
Pikachu920 53f7cdb
Fix indents in custom expressions.sk
Pikachu920 5536191
Try to fix test
Pikachu920 004d6a6
Try to fix test
Pikachu920 3557356
Try to fix custom expressions.sk
Pikachu920 e413aae
Simplify custom expressions.sk
Pikachu920 6a26889
Add tests for events, conditions, and effects
Pikachu920 9d2665e
Fix silly willy test errors 😇👸✨✨✨✨
Pikachu920 8c4938a
Fix even more silly willy test errors 😇👸✨✨✨✨✨✨
Pikachu920 5463b68
Fix test error in custom condition.sk
Pikachu920 1e20519
Fix test error in custom condition.sk
Pikachu920 c104853
Add tests for custom constants
Pikachu920 cf5de11
Fix test for custom constants
Pikachu920 6bd0dea
Switch custom syntax to new registration API
Pikachu920 2720fdd
Use Java 17 for test runner
Pikachu920 1606cb7
Make sure to re-register when updating the patterns
Pikachu920 9ec3526
Fix custom constants.sk
Pikachu920 e16944a
Register placeholder pattern for custom syntax
Pikachu920 0afd5dc
Use new registration API for ParseOrderWorkarounds
Pikachu920 235bccc
Update tracker with new info when updating patterns
Pikachu920 23cca06
Check for placeholder pattern at index 0, not 1
Pikachu920 4786fab
Hack together default pattern
APickledWalrus 7ef3bfc
Fix a silly
APickledWalrus 0c704a1
Ensure default is always present
APickledWalrus 926a305
Reposition default pattern insertion
APickledWalrus 98755a9
maybe this is causing issues
APickledWalrus 6829c4f
Remove temporary test
APickledWalrus b710a4d
Use dev/feature for testing for now
APickledWalrus e867a7a
Update skript-test-action to patch/submodule-pull
Pikachu920 abe1158
Update skript-test-action to v1.2
Pikachu920 8f65faa
Fix importing for effect commands
APickledWalrus 44205c2
Remove obsolete expression reflection
APickledWalrus 7cc0fe2
Update to Java 17
APickledWalrus ad19651
Rework EffImport test
APickledWalrus 5121728
Update to 2.10.0 full release
APickledWalrus c0031d8
Address review concerns
APickledWalrus 6b6f306
Generics bruh moment
APickledWalrus 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 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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
public class ExprRawExpression extends SimpleExpression<Expression> { | ||
static { | ||
Skript.registerExpression(ExprRawExpression.class, Expression.class, ExpressionType.COMBINED, | ||
"[the] raw %objects%"); | ||
"[the] raw [expression] %objects%"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. provides a means to workaround conflict with skript's raw expr |
||
} | ||
|
||
private Expression<?> expr; | ||
|
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.