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

Unified Diff: pkg/analyzer_experimental/lib/src/generated/source.dart

Issue 18129004: Simplify constructors translation, improve code style. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer_experimental/lib/src/generated/source.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/source.dart b/pkg/analyzer_experimental/lib/src/generated/source.dart
index 00584d25240aca4b1ba8c0f571d5ce10c89c3a29..560625cc849ab5e782ae4e0c03270b37efecb7b2 100644
--- a/pkg/analyzer_experimental/lib/src/generated/source.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/source.dart
@@ -33,12 +33,9 @@ class SourceFactory {
* @param contentCache the cache holding content used to override the default content of a source
* @param resolvers the resolvers used to resolve absolute URI's
*/
- SourceFactory.con1(ContentCache contentCache2, List<UriResolver> resolvers2) {
- _jtd_constructor_347_impl(contentCache2, resolvers2);
- }
- _jtd_constructor_347_impl(ContentCache contentCache2, List<UriResolver> resolvers2) {
- this._contentCache = contentCache2;
- this._resolvers = resolvers2;
+ SourceFactory.con1(ContentCache contentCache, List<UriResolver> resolvers) {
+ this._contentCache = contentCache;
+ this._resolvers = resolvers;
}
/**
@@ -46,12 +43,7 @@ class SourceFactory {
*
* @param resolvers the resolvers used to resolve absolute URI's
*/
- SourceFactory.con2(List<UriResolver> resolvers) {
- _jtd_constructor_348_impl(resolvers);
- }
- _jtd_constructor_348_impl(List<UriResolver> resolvers) {
- _jtd_constructor_347_impl(new ContentCache(), resolvers);
- }
+ SourceFactory.con2(List<UriResolver> resolvers) : this.con1(new ContentCache(), resolvers);
/**
* Return a source object representing the given absolute URI, or `null` if the URI is not a
@@ -459,8 +451,7 @@ class SourceKind implements Comparable<SourceKind> {
/// The position in the enum declaration.
final int ordinal;
- SourceKind(this.name, this.ordinal) {
- }
+ SourceKind(this.name, this.ordinal);
int compareTo(SourceKind other) => ordinal - other.ordinal;
int get hashCode => ordinal;
String toString() => name;

Powered by Google App Engine
This is Rietveld 408576698