-
Notifications
You must be signed in to change notification settings - Fork 357
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
Deprecate @import and global builtins #2282
Merged
Merged
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3f09d46
Deprecate @import and global builtins
jathak db077c4
Update cli and API tests
jathak e66b8a2
Migrate warning limiter test
jathak 8814002
Merge remote-tracking branch 'origin/main' into import-deprecation
jathak 8d30cee
Fix TOC
jathak 094b5a1
Fix changelog
jathak 086d462
Merge remote-tracking branch 'origin/main' into import-deprecation
jathak a895b40
Update changelog
jathak d75694e
Code review
jathak 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
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 |
---|---|---|
|
@@ -5,6 +5,8 @@ | |
import 'dart:async'; | ||
|
||
import '../ast/sass.dart'; | ||
import '../deprecation.dart'; | ||
import '../evaluation_context.dart'; | ||
import '../value.dart'; | ||
import 'async.dart'; | ||
|
||
|
@@ -83,4 +85,23 @@ class AsyncBuiltInCallable implements AsyncCallable { | |
(ArgumentDeclaration, Callback) callbackFor( | ||
int positional, Set<String> names) => | ||
(_arguments, _callback); | ||
|
||
/// Returns a copy of this callable that emits a deprecation warning. | ||
AsyncBuiltInCallable withDeprecationWarning(String module, | ||
[String? newName]) => | ||
AsyncBuiltInCallable.parsed(name, _arguments, (args) { | ||
warnForGlobalBuiltIn(module, newName ?? name); | ||
return _callback(args); | ||
}, acceptsContent: acceptsContent); | ||
} | ||
|
||
/// Emits a deprecation warning for a global built-in function that is now | ||
/// available as function [name] in built-in module [module]. | ||
void warnForGlobalBuiltIn(String module, String name) { | ||
warnForDeprecation( | ||
'Global built-in functions are deprecated and ' | ||
'will be removed in Dart Sass 3.0.0.\n' | ||
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. Style nit: only split strings at newlines or just before you'd hit the 80 char limit. |
||
'Use $module.$name instead.\n\n' | ||
'More info and automated migrator: https://sass-lang.com/d/import', | ||
Deprecation.globalBuiltin); | ||
} |
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
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
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
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
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
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.
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 link reference does not match
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.
Fixed. Good catch!