-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve the suggested replacements for unary minus in /-as-division (#…
- Loading branch information
Showing
13 changed files
with
280 additions
and
21 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Copyright 2023 Google Inc. Use of this source code is governed by an | ||
// MIT-style license that can be found in the LICENSE file or at | ||
// https://opensource.org/licenses/MIT. | ||
|
||
import '../ast/sass.dart'; | ||
import 'replace_expression.dart'; | ||
|
||
/// Converts [expression] to an equivalent `calc()`. | ||
/// | ||
/// This assumes that [expression] already returns a number. It's intended for | ||
/// use in end-user messaging, and may not produce directly evaluable | ||
/// expressions. | ||
CalculationExpression expressionToCalc(Expression expression) => | ||
CalculationExpression.calc( | ||
expression.accept(const _MakeExpressionCalculationSafe()), | ||
expression.span); | ||
|
||
/// A visitor that replaces constructs that can't be used in a calculation with | ||
/// those that can. | ||
class _MakeExpressionCalculationSafe with ReplaceExpressionVisitor { | ||
const _MakeExpressionCalculationSafe(); | ||
|
||
Expression visitCalculationExpression(CalculationExpression node) => node; | ||
|
||
Expression visitBinaryOperationExpression(BinaryOperationExpression node) => node | ||
.operator == | ||
BinaryOperator.modulo | ||
// `calc()` doesn't support `%` for modulo but Sass doesn't yet support the | ||
// `mod()` calculation function because there's no browser support, so we have | ||
// to work around it by wrapping the call in a Sass function. | ||
? FunctionExpression( | ||
'max', ArgumentInvocation([node], const {}, node.span), node.span, | ||
namespace: 'math') | ||
: super.visitBinaryOperationExpression(node); | ||
|
||
Expression visitInterpolatedFunctionExpression( | ||
InterpolatedFunctionExpression node) => | ||
node; | ||
|
||
Expression visitUnaryOperationExpression(UnaryOperationExpression node) { | ||
// `calc()` doesn't support unary operations. | ||
if (node.operator == UnaryOperator.plus) { | ||
return node.operand; | ||
} else if (node.operator == UnaryOperator.minus) { | ||
return BinaryOperationExpression( | ||
BinaryOperator.times, NumberExpression(-1, node.span), node.operand); | ||
} else { | ||
// Other unary operations don't produce numbers, so keep them as-is to | ||
// give the user a more useful syntax error after serialization. | ||
return super.visitUnaryOperationExpression(node); | ||
} | ||
} | ||
} |
Oops, something went wrong.