| Index: pkg/compiler/lib/src/common/resolution.dart
|
| diff --git a/pkg/compiler/lib/src/common/resolution.dart b/pkg/compiler/lib/src/common/resolution.dart
|
| index 33f80229faea98fef9df4988b761fa5ab9f42775..3f54e2ea1728d82537d1c47a040c4a68d2aa3407 100644
|
| --- a/pkg/compiler/lib/src/common/resolution.dart
|
| +++ b/pkg/compiler/lib/src/common/resolution.dart
|
| @@ -213,9 +213,12 @@ abstract class Resolution implements Frontend {
|
|
|
| /// A container of commonly used dependencies for tasks that involve parsing.
|
| abstract class ParsingContext {
|
| - factory ParsingContext(DiagnosticReporter reporter, ParserTask parser,
|
| - ScannerTask scanner, PatchParserTask patchParser, Backend backend)
|
| - = _ParsingContext;
|
| + factory ParsingContext(
|
| + DiagnosticReporter reporter,
|
| + ParserTask parser,
|
| + ScannerTask scanner,
|
| + PatchParserTask patchParser,
|
| + Backend backend) = _ParsingContext;
|
|
|
| DiagnosticReporter get reporter;
|
| ParserTask get parser;
|
| @@ -241,8 +244,8 @@ class _ParsingContext implements ParsingContext {
|
| final PatchParserTask patchParser;
|
| final Backend backend;
|
|
|
| - _ParsingContext(this.reporter, this.parser, this.scanner, this.patchParser,
|
| - this.backend);
|
| + _ParsingContext(
|
| + this.reporter, this.parser, this.scanner, this.patchParser, this.backend);
|
|
|
| @override
|
| measure(f()) => parser.measure(f);
|
|
|