Chromium Code Reviews| Index: pkg/compiler/lib/src/js/js.dart |
| diff --git a/pkg/compiler/lib/src/js/js.dart b/pkg/compiler/lib/src/js/js.dart |
| index 2625988b889f9fada97d46497782d7f9e90b88c7..a417c08415df1ceaa61d468c9e658b917bb52730 100644 |
| --- a/pkg/compiler/lib/src/js/js.dart |
| +++ b/pkg/compiler/lib/src/js/js.dart |
| @@ -116,7 +116,8 @@ class TokenCounter extends BaseVisitor { |
| } |
| } |
| - void countTokens(Node node) => node.accept(this); |
| + // TODO(28763): Remove `<dynamic>` which issue 28763 is fixed. |
|
sra1
2017/07/05 20:52:13
s/which/when/ ?
Johnni Winther
2017/07/06 07:41:35
Done.
|
| + void countTokens(Node node) => node.accept<dynamic>(this); |
| } |
| abstract class ReferenceCountedAstNode implements Node { |