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

Side by Side Diff: tests/compiler/dart2js/analyze_api_test.dart

Issue 1846803002: Fix webgl methods, properly this time (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Remove whitelisting of analysis failures Created 4 years, 8 months 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 analyze_api; 5 library analyze_api;
6 6
7 import 'package:sdk_library_metadata/libraries.dart'; 7 import 'package:sdk_library_metadata/libraries.dart';
8 import 'analyze_helper.dart'; 8 import 'analyze_helper.dart';
9 import 'package:async_helper/async_helper.dart'; 9 import 'package:async_helper/async_helper.dart';
10 import 'package:compiler/src/diagnostics/messages.dart' show MessageKind; 10 import 'package:compiler/src/diagnostics/messages.dart' show MessageKind;
11 /** 11 /**
12 * Map of white-listed warnings and errors. 12 * Map of white-listed warnings and errors.
13 * 13 *
14 * Only add a white-listing together with a bug report to dartbug.com and add 14 * Only add a white-listing together with a bug report to dartbug.com and add
15 * the bug issue number as a comment on the white-listing. 15 * the bug issue number as a comment on the white-listing.
16 * 16 *
17 * Use an identifiable suffix of the file uri as key. Use a fixed substring of 17 * Use an identifiable suffix of the file uri as key. Use a fixed substring of
18 * the error/warning message in the list of white-listings for each file. 18 * the error/warning message in the list of white-listings for each file.
19 */ 19 */
20 // TODO(johnniwinther): Support canonical URIs as keys. 20 // TODO(johnniwinther): Support canonical URIs as keys.
21 const Map<String, List<String>> WHITE_LIST = const { 21 const Map<String, List<String>> WHITE_LIST = const {
22 'sdk/lib/web_gl/dart2js/web_gl_dart2js.dart': const [
23 "is not defined for the class 'RenderingContext'", // Issue 26111
24 ],
25 }; 22 };
26 23
27 void main() { 24 void main() {
28 var uriList = new List<Uri>(); 25 var uriList = new List<Uri>();
29 libraries.forEach((String name, LibraryInfo info) { 26 libraries.forEach((String name, LibraryInfo info) {
30 if (info.documented) { 27 if (info.documented) {
31 uriList.add(new Uri(scheme: 'dart', path: name)); 28 uriList.add(new Uri(scheme: 'dart', path: name));
32 } 29 }
33 }); 30 });
34 asyncTest(() => analyze(uriList, WHITE_LIST, mode: AnalysisMode.ALL)); 31 asyncTest(() => analyze(uriList, WHITE_LIST, mode: AnalysisMode.ALL));
35 } 32 }
OLDNEW
« no previous file with comments | « sdk/lib/web_gl/dartium/web_gl_dartium.dart ('k') | tools/dom/templates/html/impl/impl_WebGLRenderingContext.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698