| Index: pkg/front_end/test/scanner_test.dart
|
| diff --git a/pkg/front_end/test/scanner_test.dart b/pkg/front_end/test/scanner_test.dart
|
| index ad20fbf0ba4ed71a614d27e6c69823a420b19897..a163c010f9bda0778fcbae49b0a75b6406beb0c7 100644
|
| --- a/pkg/front_end/test/scanner_test.dart
|
| +++ b/pkg/front_end/test/scanner_test.dart
|
| @@ -366,6 +366,10 @@ abstract class ScannerTestBase {
|
| _assertToken(TokenType.EQ_EQ, "==");
|
| }
|
|
|
| + void test_function() {
|
| + _assertToken(TokenType.FUNCTION, "=>");
|
| + }
|
| +
|
| void test_gt() {
|
| _assertToken(TokenType.GT, ">");
|
| }
|
|
|