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

Unified Diff: pkg/analyzer/lib/src/lint/linter.dart

Issue 2989363002: Deprecate unintended APIs. (Closed)
Patch Set: add CamelCaseString Created 3 years, 4 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
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/lint/util.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/lint/linter.dart
diff --git a/pkg/analyzer/lib/src/lint/linter.dart b/pkg/analyzer/lib/src/lint/linter.dart
index 09c62c65d01cdbcb9e0483f113cc4d4cd2c2f75e..302e7fc211bbab4b0df21e5eb10195b2403113b4 100644
--- a/pkg/analyzer/lib/src/lint/linter.dart
+++ b/pkg/analyzer/lib/src/lint/linter.dart
@@ -26,6 +26,7 @@ import 'package:path/path.dart' as p;
typedef Printer(String msg);
/// Describes a String in valid camel case format.
+@deprecated // Never intended for public use.
class CamelCaseString {
static final _camelCaseMatcher = new RegExp(r'[A-Z][a-z]*');
static final _camelCaseTester = new RegExp(r'^([_$]*)([A-Z?$]+[a-z0-9]*)+$');
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/lint/util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698