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

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

Issue 12604020: analyzer_experimental checkpoint and AnalysisContext example. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't mark Source as 'changed'. Created 7 years, 9 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/constant.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/constant.dart b/pkg/analyzer_experimental/lib/src/generated/constant.dart
index 93ddccb83e8172c7f0bf4b954c6e246deb7f5019..9e82ce997575bd4596ca05e96b7a59ce41ea136d 100644
--- a/pkg/analyzer_experimental/lib/src/generated/constant.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/constant.dart
@@ -363,9 +363,9 @@ class ErrorResult extends EvaluationResultImpl {
* @param errorCode the error code for the error to be generated
*/
ErrorResult.con1(ASTNode node, ErrorCode errorCode) {
- _jtd_constructor_156_impl(node, errorCode);
+ _jtd_constructor_158_impl(node, errorCode);
}
- _jtd_constructor_156_impl(ASTNode node, ErrorCode errorCode) {
+ _jtd_constructor_158_impl(ASTNode node, ErrorCode errorCode) {
_errors.add(new ErrorResult_ErrorData(node, errorCode));
}
/**
@@ -375,9 +375,9 @@ class ErrorResult extends EvaluationResultImpl {
* @param secondResult the second set of results being merged
*/
ErrorResult.con2(ErrorResult firstResult, ErrorResult secondResult) {
- _jtd_constructor_157_impl(firstResult, secondResult);
+ _jtd_constructor_159_impl(firstResult, secondResult);
}
- _jtd_constructor_157_impl(ErrorResult firstResult, ErrorResult secondResult) {
+ _jtd_constructor_159_impl(ErrorResult firstResult, ErrorResult secondResult) {
_errors.addAll(firstResult._errors);
_errors.addAll(secondResult._errors);
}

Powered by Google App Engine
This is Rietveld 408576698