| Index: compiler/javatests/com/google/dart/compiler/parser/CommentTest.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/parser/CommentTest.java b/compiler/javatests/com/google/dart/compiler/parser/CommentTest.java
|
| index cfefd14362bda35b3636f486c7632bf154122fb0..dee5e3a4dbadd83c3b3ebbb9eded51963bf1a15e 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/parser/CommentTest.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/parser/CommentTest.java
|
| @@ -115,8 +115,8 @@ public class CommentTest extends CompilerTestCase {
|
|
|
| private void assertDeclComments(DartUnit unit, String name, String comments) {
|
| for (DartNode node : unit.getTopLevelNodes()) {
|
| - if (node instanceof DartDeclaration && node.getSymbol() != null
|
| - && name.equals(node.getSymbol().getOriginalSymbolName())) {
|
| + if (node instanceof DartDeclaration && node.getElement() != null
|
| + && name.equals(node.getElement().getOriginalName())) {
|
| DartDeclaration<?> decl = (DartDeclaration<?>)node;
|
| String nodeComments = null;
|
|
|
|
|