| Index: lib/strong_mode.dart
|
| diff --git a/lib/strong_mode.dart b/lib/strong_mode.dart
|
| index 7f78df400cc11ac3527f4364549a2d8b8ba16807..69a61a8e58f45de0d00ec2177aa63b6d0500a305 100644
|
| --- a/lib/strong_mode.dart
|
| +++ b/lib/strong_mode.dart
|
| @@ -63,7 +63,7 @@ class StrongChecker {
|
| var category = '${msg.runtimeType}';
|
| var errorCode = errorCodeFactory(category, msg.message);
|
| var len = msg.end - msg.begin;
|
| - errors.add(new AnalysisError.con2(source, msg.begin, len, errorCode));
|
| + errors.add(new AnalysisError(source, msg.begin, len, errorCode));
|
| };
|
|
|
| for (Source librarySource in _context.getLibrariesContaining(source)) {
|
|
|