| Index: runtime/vm/ast_transformer.cc
|
| diff --git a/runtime/vm/ast_transformer.cc b/runtime/vm/ast_transformer.cc
|
| index 76faa8905532a38563ba935da207889b2b34a370..b4583cf636de7d8a9156f259c6cc430e65e13772 100644
|
| --- a/runtime/vm/ast_transformer.cc
|
| +++ b/runtime/vm/ast_transformer.cc
|
| @@ -62,7 +62,8 @@ AstNode* AwaitTransformer::Transform(AstNode* expr) {
|
|
|
|
|
| LocalVariable* AwaitTransformer::EnsureCurrentTempVar() {
|
| - String& symbol = String::ZoneHandle(Z, String::NewFormatted("%d", temp_cnt_));
|
| + String& symbol =
|
| + String::ZoneHandle(Z, Symbols::NewFormatted("%d", temp_cnt_));
|
| symbol = Symbols::FromConcat(Symbols::AwaitTempVarPrefix(), symbol);
|
| ASSERT(!symbol.IsNull());
|
| // Look up the variable in the scope used for async temp variables.
|
|
|