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

Side by Side Diff: pkg/front_end/lib/src/base/library_info.dart

Issue 2611183004: Add a missing copyright notice. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « no previous file | no next file » | 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) 2017, the Dart project authors. Please see the AUTHORS file
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.
4
1 /// A bit flag used by [LibraryInfo] indicating that a library is used by 5 /// A bit flag used by [LibraryInfo] indicating that a library is used by
2 /// dart2js. 6 /// dart2js.
3 /// 7 ///
4 /// This declaration duplicates the declaration in the SDK's "libraries.dart". 8 /// This declaration duplicates the declaration in the SDK's "libraries.dart".
5 const int DART2JS_PLATFORM = 1; 9 const int DART2JS_PLATFORM = 1;
6 10
7 /// A bit flag used by [LibraryInfo] indicating that a library is used by the 11 /// A bit flag used by [LibraryInfo] indicating that a library is used by the
8 /// VM. 12 /// VM.
9 /// 13 ///
10 /// This declaration duplicates the declaration in the SDK's "libraries.dart". 14 /// This declaration duplicates the declaration in the SDK's "libraries.dart".
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 final int level; 150 final int level;
147 151
148 final String name; 152 final String name;
149 153
150 final String description; 154 final String description;
151 155
152 const Maturity(this.level, this.name, this.description); 156 const Maturity(this.level, this.name, this.description);
153 157
154 String toString() => "$name: $level\n$description\n"; 158 String toString() => "$name: $level\n$description\n";
155 } 159 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698