| Index: dart/site/try/src/selection.dart
|
| diff --git a/dart/site/try/src/selection.dart b/dart/site/try/src/selection.dart
|
| index 7551b596545826eae5143722763b55e276a20b53..a8005e6150174708cc97ccba93a545dcfc793f9c 100644
|
| --- a/dart/site/try/src/selection.dart
|
| +++ b/dart/site/try/src/selection.dart
|
| @@ -26,6 +26,10 @@ class TrySelection {
|
| : anchorNode = isCollapsed(selection) ? selection.anchorNode : null,
|
| anchorOffset = isCollapsed(selection) ? selection.anchorOffset : -1;
|
|
|
| + TrySelection.empty(this.root)
|
| + : anchorNode = null,
|
| + anchorOffset = -1;
|
| +
|
| Text addNodeFromSubstring(int start,
|
| int end,
|
| List<Node> nodes,
|
|
|