| Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SourceRangeImpl.java
|
| diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SourceRangeImpl.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SourceRangeImpl.java
|
| index d07cae2551e7eafa678de70ffe446b679131a2a8..812b87c5a80a9d1a95d45a2c899582739b637dc1 100644
|
| --- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SourceRangeImpl.java
|
| +++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SourceRangeImpl.java
|
| @@ -53,8 +53,8 @@ public class SourceRangeImpl implements SourceRange {
|
| * @param the node whose source position is to be used to initialize the source range
|
| */
|
| public SourceRangeImpl(DartNode node) {
|
| - this.offset = node.getSourceStart();
|
| - this.length = node.getSourceLength();
|
| + this.offset = node.getSourceInfo().getOffset();
|
| + this.length = node.getSourceInfo().getLength();
|
| }
|
|
|
| /**
|
|
|