| Index: pkg/kernel/lib/clone.dart
|
| diff --git a/pkg/kernel/lib/clone.dart b/pkg/kernel/lib/clone.dart
|
| index 6ad1936bb5e48445e1ef44aa75c86065605f24d9..71e2da2b0f85b81c26650a3f335e267f6a4f8e77 100644
|
| --- a/pkg/kernel/lib/clone.dart
|
| +++ b/pkg/kernel/lib/clone.dart
|
| @@ -270,7 +270,9 @@ class CloneVisitor extends TreeVisitor {
|
|
|
| visitAssertStatement(AssertStatement node) {
|
| return new AssertStatement(
|
| - clone(node.condition), cloneOptional(node.message));
|
| + clone(node.condition), cloneOptional(node.message))
|
| + ..conditionStartOffset = node.conditionStartOffset
|
| + ..conditionEndOffset = node.conditionEndOffset;
|
| }
|
|
|
| visitLabeledStatement(LabeledStatement node) {
|
|
|