| Index: compiler/java/com/google/dart/compiler/ast/DartComment.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartComment.java b/compiler/java/com/google/dart/compiler/ast/DartComment.java
|
| index 4e25c0492ed9fe56169a41aafcf1248bc420c904..30fbdec793234fe9eaddd7a0b5880af82b1d829b 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartComment.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartComment.java
|
| @@ -5,6 +5,7 @@
|
| package com.google.dart.compiler.ast;
|
|
|
| import com.google.dart.compiler.Source;
|
| +import com.google.dart.compiler.common.SourceInfo;
|
|
|
| public class DartComment extends DartNode {
|
|
|
| @@ -17,7 +18,7 @@ public class DartComment extends DartNode {
|
| private Style style;
|
|
|
| public DartComment(Source source, int start, int length, int line, int col, Style style) {
|
| - setSourceLocation(source, line, col, start, length);
|
| + setSourceInfo(new SourceInfo(source, start, length));
|
| this.style = style;
|
| }
|
|
|
|
|