| Index: pkg/analyzer_experimental/lib/src/generated/constant.dart
|
| diff --git a/pkg/analyzer_experimental/lib/src/generated/constant.dart b/pkg/analyzer_experimental/lib/src/generated/constant.dart
|
| index 240323147b3715537923b7dbf809992b8d9a4655..7036abb1a0ab1b8020127fa46f13f751a085f1f2 100644
|
| --- a/pkg/analyzer_experimental/lib/src/generated/constant.dart
|
| +++ b/pkg/analyzer_experimental/lib/src/generated/constant.dart
|
| @@ -487,6 +487,7 @@ class ConstantVisitor extends GeneralizingASTVisitor<EvaluationResultImpl> {
|
| }
|
| return result;
|
| }
|
| + EvaluationResultImpl visitSymbolLiteral(SymbolLiteral node) => ValidResult.RESULT_SYMBOL;
|
|
|
| /**
|
| * Return a result object representing an error associated with the given node.
|
| @@ -995,6 +996,12 @@ class ValidResult extends EvaluationResultImpl {
|
| static ValidResult RESULT_OBJECT = new ValidResult(new Object());
|
|
|
| /**
|
| + * A result object representing the an arbitrary symbol on which no further operations can be
|
| + * performed.
|
| + */
|
| + static ValidResult RESULT_SYMBOL = new ValidResult(new Object());
|
| +
|
| + /**
|
| * A result object representing the an arbitrary string on which no further operations can be
|
| * performed.
|
| */
|
|
|