| Index: sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| index ea44f141650ea26d02466e3b20a41a8c0a914a85..322fddce37b30468305e07f9e2d0d911e32f3023 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| @@ -1627,7 +1627,9 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| SourceFileLocation location = new SourceFileLocation(sourceFile, token);
|
| if (!location.isValid()) {
|
| throw MessageKind.INVALID_SOURCE_FILE_LOCATION.message(
|
| - [token.charOffset, sourceFile.filename, sourceFile.text.length]);
|
| + {'offset': token.charOffset,
|
| + 'fileName': sourceFile.filename,
|
| + 'length': sourceFile.text.length});
|
| }
|
| return location;
|
| }
|
|
|