| Index: pkg/compiler/lib/src/io/position_information.dart
|
| diff --git a/pkg/compiler/lib/src/io/position_information.dart b/pkg/compiler/lib/src/io/position_information.dart
|
| index 0c94faa51f68dd0cb6447d8b03a84e63282ed5cb..9bf27928713367f83889731ad1ca8bd089136685 100644
|
| --- a/pkg/compiler/lib/src/io/position_information.dart
|
| +++ b/pkg/compiler/lib/src/io/position_information.dart
|
| @@ -653,8 +653,12 @@ class CallPosition {
|
| return new CallPosition(
|
| node.target, CodePositionKind.END, SourcePositionKind.INNER);
|
| } else {
|
| - assert(invariant(NO_LOCATION_SPANNABLE, false,
|
| - message: "Unexpected property access ${nodeToString(node)}:\n"
|
| + // TODO(johnniwinther): Maybe remove this assertion.
|
| + assert(
|
| + false,
|
| + failedAt(
|
| + NO_LOCATION_SPANNABLE,
|
| + "Unexpected property access ${nodeToString(node)}:\n"
|
| "${DebugPrinter.prettyPrint(node)}"));
|
| // Don't know....
|
| return new CallPosition(
|
|
|