| Index: runtime/vm/ast_transformer.cc
|
| diff --git a/runtime/vm/ast_transformer.cc b/runtime/vm/ast_transformer.cc
|
| index 111a92c3923764cc033e6c1fe26f92b4f9654ec8..398e2cb9709b7ff2cf24cf2c1166052605541780 100644
|
| --- a/runtime/vm/ast_transformer.cc
|
| +++ b/runtime/vm/ast_transformer.cc
|
| @@ -2,6 +2,8 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| +#if !defined(DART_PRECOMPILED_RUNTIME)
|
| +
|
| #include "vm/ast_transformer.h"
|
|
|
| #include "vm/object_store.h"
|
| @@ -496,3 +498,5 @@ void AwaitTransformer::VisitThrowNode(ThrowNode* node) {
|
| }
|
|
|
| } // namespace dart
|
| +
|
| +#endif // !defined(DART_PRECOMPILED_RUNTIME)
|
|
|