Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: pkg/analysis_server/test/integration/analysis/analysis_options_test.dart

Issue 1413783005: `LineInfo` line-end detection fixes. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Tests. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/task/options.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library test.integration.analysis.analysis_options; 5 library test.integration.analysis.analysis_options;
6 6
7 import 'package:analysis_server/plugin/protocol/protocol.dart'; 7 import 'package:analysis_server/plugin/protocol/protocol.dart';
8 import 'package:test_reflective_loader/test_reflective_loader.dart'; 8 import 'package:test_reflective_loader/test_reflective_loader.dart';
9 import 'package:unittest/unittest.dart'; 9 import 'package:unittest/unittest.dart';
10 10
11 import '../../utils.dart'; 11 import '../../utils.dart';
(...skipping 26 matching lines...) Expand all
38 AnalysisError error = errors[0]; 38 AnalysisError error = errors[0];
39 expect(error.location.file, options); 39 expect(error.location.file, options);
40 expect(error.severity, AnalysisErrorSeverity.WARNING); 40 expect(error.severity, AnalysisErrorSeverity.WARNING);
41 expect(error.type, AnalysisErrorType.STATIC_WARNING); 41 expect(error.type, AnalysisErrorType.STATIC_WARNING);
42 expect(error.location.offset, 23); 42 expect(error.location.offset, 23);
43 expect(error.location.length, 'camel_case_typo'.length); 43 expect(error.location.length, 'camel_case_typo'.length);
44 expect(error.location.startLine, 3); 44 expect(error.location.startLine, 3);
45 expect(error.location.startColumn, 7); 45 expect(error.location.startColumn, 7);
46 } 46 }
47 } 47 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/task/options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698