| Index: pkg/analyzer_experimental/lib/src/generated/error.dart
|
| diff --git a/pkg/analyzer_experimental/lib/src/generated/error.dart b/pkg/analyzer_experimental/lib/src/generated/error.dart
|
| index 018ee7899b278dffd44f623acfec886c32225434..6061cb07c0ab82bddbb9a8019f943bb6f8876dad 100644
|
| --- a/pkg/analyzer_experimental/lib/src/generated/error.dart
|
| +++ b/pkg/analyzer_experimental/lib/src/generated/error.dart
|
| @@ -170,6 +170,14 @@ class ErrorReporter {
|
| }
|
|
|
| /**
|
| + * Creates an error with properties with the given error code and arguments.
|
| + * @param errorCode the error code of the error to be reported
|
| + * @param node the node specifying the location of the error
|
| + * @param arguments the arguments to the error, used to compose the error message
|
| + */
|
| + AnalysisErrorWithProperties newErrorWithProperties(ErrorCode errorCode, ASTNode node, List<Object> arguments) => new AnalysisErrorWithProperties.con2(_source, node.offset, node.length, errorCode, arguments);
|
| +
|
| + /**
|
| * Report a passed error.
|
| * @param error the error to report
|
| */
|
|
|