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

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

Issue 13493011: Fix some tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 import 'package:expect/expect.dart';
5 import 'dart:async'; 6 import 'dart:async';
6 import 'dart:io'; 7 import 'dart:io';
7 import 'dart:uri'; 8 import 'dart:uri';
8 import '../../../sdk/lib/_internal/compiler/implementation/filenames.dart'; 9 import '../../../sdk/lib/_internal/compiler/implementation/filenames.dart';
9 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart' ; 10 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart' ;
10 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirro r.dart'; 11 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirro r.dart';
11 import '../../../sdk/lib/_internal/compiler/implementation/source_file_provider. dart'; 12 import '../../../sdk/lib/_internal/compiler/implementation/source_file_provider. dart';
12 import 'mock_compiler.dart'; 13 import 'mock_compiler.dart';
13 14
14 const String SOURCE = 'source'; 15 const String SOURCE = 'source';
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 testDeclarationComment('final int field = 0;', ['field']); 77 testDeclarationComment('final int field = 0;', ['field']);
77 testDeclarationComment('final field1 = 0, field2 = 0;', ['field1', 'field2']); 78 testDeclarationComment('final field1 = 0, field2 = 0;', ['field1', 'field2']);
78 testDeclarationComment('final int field1 = 0, field2 = 0;', 79 testDeclarationComment('final int field1 = 0, field2 = 0;',
79 ['field1', 'field2']); 80 ['field1', 'field2']);
80 testDeclarationComment('const field = 0;', ['field']); 81 testDeclarationComment('const field = 0;', ['field']);
81 testDeclarationComment('const int field = 0;', ['field']); 82 testDeclarationComment('const int field = 0;', ['field']);
82 testDeclarationComment('const field1 = 0, field2 = 0;', ['field1', 'field2']); 83 testDeclarationComment('const field1 = 0, field2 = 0;', ['field1', 'field2']);
83 testDeclarationComment('const int field1 = 0, field2 = 0;', 84 testDeclarationComment('const int field1 = 0, field2 = 0;',
84 ['field1', 'field2']); 85 ['field1', 'field2']);
85 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698