| Index: pkg/analyzer/lib/src/generated/sdk.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/sdk.dart b/pkg/analyzer/lib/src/generated/sdk.dart
|
| index 81c8a88acf56e739df9505c8c9a0c77ffe18541b..2b4fc6e64ad3dc453ff06fbbba7f1e5e51347f46 100644
|
| --- a/pkg/analyzer/lib/src/generated/sdk.dart
|
| +++ b/pkg/analyzer/lib/src/generated/sdk.dart
|
| @@ -303,7 +303,7 @@ class SdkLibraryImpl implements SdkLibrary {
|
| * The short name of the library. This is the name used after 'dart:' in a
|
| * URI.
|
| */
|
| - String _shortName = null;
|
| + final String shortName;
|
|
|
| /**
|
| * The path to the file defining the library. The path is relative to the
|
| @@ -337,9 +337,7 @@ class SdkLibraryImpl implements SdkLibrary {
|
| * Initialize a newly created library to represent the library with the given
|
| * [name].
|
| */
|
| - SdkLibraryImpl(String name) {
|
| - this._shortName = name;
|
| - }
|
| + SdkLibraryImpl(this.shortName);
|
|
|
| /**
|
| * Set whether the library is documented.
|
| @@ -373,9 +371,6 @@ class SdkLibraryImpl implements SdkLibrary {
|
| @override
|
| bool get isVmLibrary => (_platforms & VM_PLATFORM) != 0;
|
|
|
| - @override
|
| - String get shortName => _shortName;
|
| -
|
| /**
|
| * Record that this library can be compiled to JavaScript by dart2js.
|
| */
|
|
|