| Index: sdk/lib/_internal/compiler/implementation/dart_backend/utils.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/utils.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/utils.dart
|
| index 61bad39d83a10315304b7bbd6c7b67e406cbb5d2..bd34053b4a87857bf08426480a48d467baf9970a 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart_backend/utils.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart_backend/utils.dart
|
| @@ -192,6 +192,9 @@ class CloningVisitor implements Visitor<Node> {
|
| visitSwitchStatement(SwitchStatement node) => new SwitchStatement(
|
| visit(node.parenthesizedExpression), visit(node.cases),
|
| node.switchKeyword);
|
| +
|
| + visitSymbolLiteral(SymbolLiteral node) => new SymbolLiteral(
|
| + node.hashToken, visit(node.operator), visit(node.identifiers));
|
|
|
| visitThrow(Throw node) => new Throw(
|
| visit(node.expression), node.throwToken, node.endToken);
|
|
|