-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Re-enable new calculation functions (#2076)"
This reverts commit 8359d94.
- Loading branch information
Showing
31 changed files
with
691 additions
and
1,685 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
// Copyright 2021 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 'package:meta/meta.dart'; | ||
import 'package:source_span/source_span.dart'; | ||
|
||
import '../../../visitor/interface/expression.dart'; | ||
import '../expression.dart'; | ||
import 'binary_operation.dart'; | ||
import 'function.dart'; | ||
import 'if.dart'; | ||
import 'number.dart'; | ||
import 'parenthesized.dart'; | ||
import 'string.dart'; | ||
import 'variable.dart'; | ||
|
||
/// A calculation literal. | ||
/// | ||
/// {@category AST} | ||
final class CalculationExpression implements Expression { | ||
/// This calculation's name. | ||
final String name; | ||
|
||
/// The arguments for the calculation. | ||
final List<Expression> arguments; | ||
|
||
final FileSpan span; | ||
|
||
/// Returns a `calc()` calculation expression. | ||
CalculationExpression.calc(Expression argument, FileSpan span) | ||
: this("calc", [argument], span); | ||
|
||
/// Returns a `min()` calculation expression. | ||
CalculationExpression.min(Iterable<Expression> arguments, this.span) | ||
: name = "min", | ||
arguments = _verifyArguments(arguments) { | ||
if (this.arguments.isEmpty) { | ||
throw ArgumentError("min() requires at least one argument."); | ||
} | ||
} | ||
|
||
/// Returns a `max()` calculation expression. | ||
CalculationExpression.max(Iterable<Expression> arguments, this.span) | ||
: name = "max", | ||
arguments = _verifyArguments(arguments) { | ||
if (this.arguments.isEmpty) { | ||
throw ArgumentError("max() requires at least one argument."); | ||
} | ||
} | ||
|
||
/// Returns a `clamp()` calculation expression. | ||
CalculationExpression.clamp( | ||
Expression min, Expression value, Expression max, FileSpan span) | ||
: this("clamp", [min, max, value], span); | ||
|
||
/// Returns a calculation expression with the given name and arguments. | ||
/// | ||
/// Unlike the other constructors, this doesn't verify that the arguments are | ||
/// valid for the name. | ||
@internal | ||
CalculationExpression(this.name, Iterable<Expression> arguments, this.span) | ||
: arguments = _verifyArguments(arguments); | ||
|
||
/// Throws an [ArgumentError] if [arguments] aren't valid calculation | ||
/// arguments, and returns them as an unmodifiable list if they are. | ||
static List<Expression> _verifyArguments(Iterable<Expression> arguments) => | ||
List.unmodifiable(arguments.map((arg) { | ||
_verify(arg); | ||
return arg; | ||
})); | ||
|
||
/// Throws an [ArgumentError] if [expression] isn't a valid calculation | ||
/// argument. | ||
static void _verify(Expression expression) { | ||
switch (expression) { | ||
case NumberExpression() || | ||
CalculationExpression() || | ||
VariableExpression() || | ||
FunctionExpression() || | ||
IfExpression() || | ||
StringExpression(hasQuotes: false): | ||
break; | ||
|
||
case ParenthesizedExpression(:var expression): | ||
_verify(expression); | ||
|
||
case BinaryOperationExpression( | ||
:var left, | ||
:var right, | ||
operator: BinaryOperator.plus || | ||
BinaryOperator.minus || | ||
BinaryOperator.times || | ||
BinaryOperator.dividedBy | ||
): | ||
_verify(left); | ||
_verify(right); | ||
|
||
case _: | ||
throw ArgumentError("Invalid calculation argument $expression."); | ||
} | ||
} | ||
|
||
T accept<T>(ExpressionVisitor<T> visitor) => | ||
visitor.visitCalculationExpression(this); | ||
|
||
String toString() => "$name(${arguments.join(', ')})"; | ||
} |
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.