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

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

Issue 25373002: Issue 13584. Fix for Java/Dart local variable scoping mismatch. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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/sdk.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/sdk.dart b/pkg/analyzer_experimental/lib/src/generated/sdk.dart
index 2accc5481336740807637fc84f62484971313fd7..234742f60bfb04366275f1e51d108997ce2bdc9c 100644
--- a/pkg/analyzer_experimental/lib/src/generated/sdk.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/sdk.dart
@@ -157,8 +157,8 @@ class SdkLibraryImpl implements SdkLibrary {
*
* @param category the name of the category containing the library
*/
- void set category(String category2) {
- this._category = category2;
+ void set category(String category) {
+ this._category = category;
}
/**
@@ -173,8 +173,8 @@ class SdkLibraryImpl implements SdkLibrary {
*
* @param documented `true` if the library is documented
*/
- void set documented(bool documented2) {
- this._documented = documented2;
+ void set documented(bool documented) {
+ this._documented = documented;
}
/**
@@ -182,8 +182,8 @@ class SdkLibraryImpl implements SdkLibrary {
*
* @param implementation `true` if the library is an implementation library
*/
- void set implementation(bool implementation2) {
- this._implementation = implementation2;
+ void set implementation(bool implementation) {
+ this._implementation = implementation;
}
/**
@@ -192,8 +192,8 @@ class SdkLibraryImpl implements SdkLibrary {
*
* @param path the path to the file defining the library
*/
- void set path(String path2) {
- this._path = path2;
+ void set path(String path) {
+ this._path = path;
}
/**

Powered by Google App Engine
This is Rietveld 408576698