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

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

Issue 11275097: Merge SourceLocation and Source (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revert use of Pattern.allMatches Created 8 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 | 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 /** 5 /**
6 * This file is read by 'mirrors_test.dart'. 6 * This file is read by 'mirrors_test.dart'.
7 */ 7 */
8 8
9 #library('mirrors_helper'); 9 library mirrors_helper;
10 10
11 typedef E Func<E,F extends Foo>(F f); 11 typedef E Func<E,F extends Foo>(F f);
12 12
13 main() { 13 main() {
14 14
15 } 15 }
16 16
17 class Foo { 17 class Foo {
18 18
19 } 19 }
(...skipping 27 matching lines...) Expand all
47 } 47 }
48 48
49 class _PrivateClass { 49 class _PrivateClass {
50 var _privateField; 50 var _privateField;
51 get _privateGetter => _privateField; 51 get _privateGetter => _privateField;
52 void set _privateSetter(value) => _privateField = value; 52 void set _privateSetter(value) => _privateField = value;
53 void _privateMethod() {} 53 void _privateMethod() {}
54 _PrivateClass._privateConstructor(); 54 _PrivateClass._privateConstructor();
55 factory _PrivateClass._privateFactoryConstructor() => new _PrivateClass(); 55 factory _PrivateClass._privateFactoryConstructor() => new _PrivateClass();
56 } 56 }
OLDNEW
« no previous file with comments | « pkg/dartdoc/lib/src/mirrors/dart2js_mirror.dart ('k') | tests/compiler/dart2js/mirrors_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698