 Chromium Code Reviews
 Chromium Code Reviews Issue 2897003003:
  Fix various semantic nits that Fasta will detect.  (Closed)
    
  
    Issue 2897003003:
  Fix various semantic nits that Fasta will detect.  (Closed) 
  | Index: pkg/front_end/test/src/incremental/mock_sdk.dart | 
| diff --git a/pkg/front_end/test/src/incremental/mock_sdk.dart b/pkg/front_end/test/src/incremental/mock_sdk.dart | 
| index cf9ec1d4ef920b0fe31b3d496cfe4bc1a4236c04..2e300cc86624a03a683d286dbf549966bb20d887 100644 | 
| --- a/pkg/front_end/test/src/incremental/mock_sdk.dart | 
| +++ b/pkg/front_end/test/src/incremental/mock_sdk.dart | 
| @@ -25,7 +25,7 @@ import 'dart:_internal'; | 
| import 'dart:async'; | 
| class Object { | 
| - const Object() {} | 
| + const Object(); | 
| 
ahe
2017/05/23 14:44:27
A const constructor can't have a body.
 | 
| bool operator ==(other) => identical(this, other); | 
| String toString() => 'a string'; | 
| int get hashCode => 0; |