| Index: pkg/kernel/lib/binary/ast_from_binary.dart
|
| diff --git a/pkg/kernel/lib/binary/ast_from_binary.dart b/pkg/kernel/lib/binary/ast_from_binary.dart
|
| index 100fe9886627918ff9ff771dae1c3443e94e0f66..60aaab7570c26565ac02ff2a87f1fd747729cad1 100644
|
| --- a/pkg/kernel/lib/binary/ast_from_binary.dart
|
| +++ b/pkg/kernel/lib/binary/ast_from_binary.dart
|
| @@ -477,7 +477,7 @@ class BinaryBuilder {
|
| int offset = readOffset();
|
| int endOffset = readOffset();
|
| AsyncMarker asyncMarker = AsyncMarker.values[readByte()];
|
| - bool debuggable = readByte() == 1 ? true : false;
|
| + AsyncMarker dartAsyncMarker = AsyncMarker.values[readByte()];
|
| int typeParameterStackHeight = typeParameterStack.length;
|
| var typeParameters = readAndPushTypeParameterList();
|
| var requiredParameterCount = readUInt();
|
| @@ -499,10 +499,10 @@ class BinaryBuilder {
|
| namedParameters: named,
|
| returnType: returnType,
|
| inferredReturnValue: inferredReturnValue,
|
| - asyncMarker: asyncMarker)
|
| + asyncMarker: asyncMarker,
|
| + dartAsyncMarker: dartAsyncMarker)
|
| ..fileOffset = offset
|
| - ..fileEndOffset = endOffset
|
| - ..debuggable = debuggable;
|
| + ..fileEndOffset = endOffset;
|
| }
|
|
|
| void pushVariableDeclaration(VariableDeclaration variable) {
|
|
|